Add file drag and drop and asynchronous upload

This commit is contained in:
Frederic Guillot
2016-02-13 19:24:36 -05:00
parent 6161eaef9e
commit 738b6ae583
11 changed files with 222 additions and 33 deletions

View File

@@ -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();