diff --git a/lacommunaute/static/vendor/tiva-calendar/js/calendar.js b/lacommunaute/static/vendor/tiva-calendar/js/calendar.js index 68f54f873..cbe18918e 100644 --- a/lacommunaute/static/vendor/tiva-calendar/js/calendar.js +++ b/lacommunaute/static/vendor/tiva-calendar/js/calendar.js @@ -768,7 +768,6 @@ jQuery(document).ready(function () { // Get events from json file or ajax php var source = (typeof jQuery('.tiva-events-calendar').attr('data-source') != "undefined") ? jQuery('.tiva-events-calendar').attr('data-source') : 'json'; if (source == 'json') { // Get events from json file : events/events.json - console.log(events_json) jQuery.getJSON(events_json, function (data) { for (var i = 0; i < data.items.length; i++) { var event_date = new Date(data.items[i].year, Number(data.items[i].month) - 1, data.items[i].day);