summaryrefslogtreecommitdiff
path: root/assets/js/src/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'assets/js/src/App.js')
-rw-r--r--assets/js/src/App.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/assets/js/src/App.js b/assets/js/src/App.js
index 02aa7693..7651b3ec 100644
--- a/assets/js/src/App.js
+++ b/assets/js/src/App.js
@@ -36,6 +36,7 @@ App.prototype.listen = function() {
this.dropdown.listen();
this.search.listen();
this.task.listen();
+ this.swimlane.listen();
this.search.focus();
this.taskAutoComplete();
this.datePicker();
@@ -124,6 +125,8 @@ App.prototype.datePicker = function() {
// timeFormat: 'h:mm tt',
constrainInput: false
});
+
+ $(".hasDatepicker").on("blur", function(e) { $(this).datepicker("hide"); });
};
App.prototype.taskAutoComplete = function() {