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.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/assets/js/src/App.js b/assets/js/src/App.js
index 2872baf6..02aa7693 100644
--- a/assets/js/src/App.js
+++ b/assets/js/src/App.js
@@ -7,6 +7,7 @@ function App() {
this.dropdown = new Dropdown();
this.tooltip = new Tooltip(this);
this.popover = new Popover(this);
+ this.task = new Task();
this.keyboardShortcuts();
this.chosen();
this.poll();
@@ -34,6 +35,7 @@ App.prototype.listen = function() {
this.tooltip.listen();
this.dropdown.listen();
this.search.listen();
+ this.task.listen();
this.search.focus();
this.taskAutoComplete();
this.datePicker();