diff options
-rw-r--r-- | js/app.ui.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/app.ui.js b/js/app.ui.js index ee0b98b..f3f8597 100644 --- a/js/app.ui.js +++ b/js/app.ui.js @@ -138,7 +138,6 @@ function Ui() { if (val > max){ $(this).val(max); - app.ui.alarm.updateDurationLabel(); } else if (val < min) { $(this).val(min); } @@ -672,6 +671,8 @@ function Ui() { this.end.datetimepicker("option", "format", this.format) .datetimepicker(); } + $("#demo-date-1").datetimepicker(); + $("#demo-date-2").datetimepicker(); }, setDateValue: function (field, date) { |