Remove console output from index.html

This commit is contained in:
Girts Silis 2014-03-06 16:55:52 -05:00
parent e10ec70fb7
commit 3a20bfd939

View File

@ -138,7 +138,6 @@ var dateToDisable = new Date();
$('#datetimepicker11').datetimepicker({
beforeShowDay: function(date) {
if (date.getMonth() == dateToDisable.getMonth() && date.getDate() == dateToDisable.getDate()) {
console.log("Disable date " + date.toDateString());
return [false, ""]
}
@ -148,7 +147,6 @@ $('#datetimepicker11').datetimepicker({
$('#datetimepicker12').datetimepicker({
beforeShowDay: function(date) {
if (date.getMonth() == dateToDisable.getMonth() && date.getDate() == dateToDisable.getDate()) {
console.log("Style date " + date.toDateString());
return [true, "custom-date-style"];
}