diff options
Diffstat (limited to 'assets/js/src/App.js')
| -rw-r--r-- | assets/js/src/App.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/assets/js/src/App.js b/assets/js/src/App.js index d44d9f81..33b3c6b1 100644 --- a/assets/js/src/App.js +++ b/assets/js/src/App.js @@ -9,6 +9,7 @@ function App() { this.task = new Task(); this.project = new Project(); this.subtask = new Subtask(); + this.file = new FileUpload(this); this.keyboardShortcuts(); this.chosen(); this.poll(); @@ -39,6 +40,7 @@ App.prototype.listen = function() { this.task.listen(); this.swimlane.listen(); this.subtask.listen(); + this.file.listen(); this.search.focus(); this.autoComplete(); this.datePicker(); |
