Update Fullcalendar to inherit views (just removed header and end line)

See BT#11972
pull/2487/head
jmontoyaa 9 years ago
parent 766c4d4880
commit 0eb9f9c949
  1. 17
      app/Resources/public/assets/fullcalendar/dist/fullcalendar.js

@ -4,19 +4,7 @@
* (c) 2016 Adam Shaw
*/
(function(factory) {
if (typeof define === 'function' && define.amd) {
define([ 'jquery', 'moment' ], factory);
}
else if (typeof exports === 'object') { // Node/CommonJS
module.exports = factory(require('jquery'), require('moment'));
}
else {
factory(jQuery, moment);
}
})(function($, moment) {
;;
var FC = $.fullCalendar = {
version: "3.1.0",
@ -14043,6 +14031,7 @@ var ListViewGrid = Grid.extend({
var tableEl = $('<table class="fc-list-table"><tbody/></table>');
var tbodyEl = tableEl.find('tbody');
for (dayIndex = 0; dayIndex < segsByDay.length; dayIndex++) {
daySegs = segsByDay[dayIndex];
if (daySegs) { // sparse array, so might be undefined
@ -14200,7 +14189,3 @@ fcViews.listYear = {
}
};
;;
return FC; // export for Node/CommonJS
});
Loading…
Cancel
Save