From 869d613ebd0d09dee4ba46701c6c829fc8aea7c5 Mon Sep 17 00:00:00 2001 From: vincent porte Date: Wed, 24 May 2023 16:48:48 +0200 Subject: [PATCH] =?UTF-8?q?feat(event):=C2=A0remove=20ugly=20console.log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lacommunaute/static/vendor/tiva-calendar/js/calendar.js | 1 - 1 file changed, 1 deletion(-) 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);