Add Gantt chart for projects

This commit is contained in:
Frederic Guillot
2015-08-14 17:03:55 -04:00
parent c6a4fbb386
commit 17a3781bd8
47 changed files with 1169 additions and 102 deletions

View File

@@ -8,7 +8,6 @@ function App() {
this.popover = new Popover(this);
this.keyboardShortcuts();
this.boardSelector();
this.listen();
this.poll();
// Alert box fadeout
@@ -28,8 +27,6 @@ function App() {
}
App.prototype.listen = function() {
$(document).off();
this.popover.listen();
this.markdown.listen();
this.sidebar.listen();
@@ -42,6 +39,11 @@ App.prototype.listen = function() {
this.focus();
};
App.prototype.refresh = function() {
$(document).off();
this.listen();
};
App.prototype.focus = function() {
// Autofocus fields (html5 autofocus works only with page onload)