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 1b5ae981..7c312c70 100644
--- a/assets/js/src/App.js
+++ b/assets/js/src/App.js
@@ -11,6 +11,7 @@ function App() {
this.subtask = new Subtask(this);
this.column = new Column(this);
this.file = new FileUpload(this);
+ this.accordion = new Accordion(this);
this.keyboardShortcuts();
this.task.keyboardShortcuts();
this.chosen();
@@ -34,6 +35,7 @@ App.prototype.listen = function() {
this.subtask.listen();
this.column.listen();
this.file.listen();
+ this.accordion.listen();
this.search.focus();
this.autoComplete();
this.datePicker();