mirror of
https://framagit.org/framasoft/framadate/framadate
synced 2026-07-25 10:53:50 +00:00
Remove console.log
This commit is contained in:
parent
c493de7cbe
commit
1ddc11af58
1 changed files with 0 additions and 4 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue