From 1ddc11af58ee8c14399080be5779cccdef6da609 Mon Sep 17 00:00:00 2001 From: Olivier PEREZ Date: Tue, 26 Apr 2016 21:54:54 +0200 Subject: [PATCH] Remove console.log --- js/app/date_poll.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/js/app/date_poll.js b/js/app/date_poll.js index 1882b7c..4c7c383 100644 --- a/js/app/date_poll.js +++ b/js/app/date_poll.js @@ -97,11 +97,9 @@ $(document).ready(function () { } var useFirstEmptyDateField = function (dateStr) { - console.log(dateStr); var used = false; $selected_days.find('fieldset legend input').each(function () { if (!used) { - console.log($(this).val(), $(this)); if ($(this).val() == '') { $(this).val(dateStr); used = true; @@ -240,8 +238,6 @@ $(document).ready(function () { startDateField.parent().removeClass('has-error'); endDateField.parent().removeClass('has-error'); - // console.log('start_date as date', startDate); - // console.log('start_end as date', endDate); if (startDate != null && endDate != null) { if (startDate <= endDate) { while (startDate <= endDate) {