Add Gantt chart for projects
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user