remove console log
This commit is contained in:
@@ -75,14 +75,9 @@ App.order_queue_station = App.cable.subscriptions.create('OrderQueueStationChann
|
|||||||
var SortListDivs = $divs.sort(function (a, b) {
|
var SortListDivs = $divs.sort(function (a, b) {
|
||||||
first = $(a).attr('data-date');
|
first = $(a).attr('data-date');
|
||||||
next = $(b).attr('data-date');
|
next = $(b).attr('data-date');
|
||||||
console.log(parseInt(first.substring(4, 16)));
|
|
||||||
console.log(parseInt(next.substring(4, 16)));
|
|
||||||
return parseInt(next.substring(4, 16)) - parseInt(first.substring(4, 16));
|
return parseInt(next.substring(4, 16)) - parseInt(first.substring(4, 16));
|
||||||
console.log(parseInt(first.substring(4, 16)) > parseInt(next.substring(4, 16)));
|
|
||||||
});
|
});
|
||||||
console.log(SortListDivs);
|
|
||||||
$("#oqs_container").html(SortListDivs);
|
$("#oqs_container").html(SortListDivs);
|
||||||
},
|
},
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user