Fix regressions
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
namespace Kanboard\Model;
|
namespace Kanboard\Model;
|
||||||
|
|
||||||
use use PicoDb\Database;
|
use PicoDb\Database;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Project Daily Stats
|
* Project Daily Stats
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -36,6 +36,7 @@ App.prototype.listen = function() {
|
|||||||
this.dropdown.listen();
|
this.dropdown.listen();
|
||||||
this.search.listen();
|
this.search.listen();
|
||||||
this.task.listen();
|
this.task.listen();
|
||||||
|
this.swimlane.listen();
|
||||||
this.search.focus();
|
this.search.focus();
|
||||||
this.taskAutoComplete();
|
this.taskAutoComplete();
|
||||||
this.datePicker();
|
this.datePicker();
|
||||||
@@ -124,6 +125,8 @@ App.prototype.datePicker = function() {
|
|||||||
// timeFormat: 'h:mm tt',
|
// timeFormat: 'h:mm tt',
|
||||||
constrainInput: false
|
constrainInput: false
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$(".hasDatepicker").on("blur", function(e) { $(this).datepicker("hide"); });
|
||||||
};
|
};
|
||||||
|
|
||||||
App.prototype.taskAutoComplete = function() {
|
App.prototype.taskAutoComplete = function() {
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ function Board(app) {
|
|||||||
|
|
||||||
Board.prototype.execute = function() {
|
Board.prototype.execute = function() {
|
||||||
this.app.swimlane.refresh();
|
this.app.swimlane.refresh();
|
||||||
this.app.swimlane.listen();
|
|
||||||
this.restoreColumnViewMode();
|
this.restoreColumnViewMode();
|
||||||
this.compactView();
|
this.compactView();
|
||||||
this.columnScrolling();
|
this.columnScrolling();
|
||||||
@@ -84,7 +83,6 @@ Board.prototype.refresh = function(data) {
|
|||||||
|
|
||||||
this.app.refresh();
|
this.app.refresh();
|
||||||
this.app.swimlane.refresh();
|
this.app.swimlane.refresh();
|
||||||
this.app.swimlane.listen();
|
|
||||||
this.columnScrolling();
|
this.columnScrolling();
|
||||||
this.app.hideLoadingIcon();
|
this.app.hideLoadingIcon();
|
||||||
this.listen();
|
this.listen();
|
||||||
|
|||||||
@@ -14,7 +14,8 @@ Popover.prototype.open = function(link) {
|
|||||||
|
|
||||||
$.get(link, function(content) {
|
$.get(link, function(content) {
|
||||||
$("body").append('<div id="popover-container"><div id="popover-content">' + content + '</div></div>');
|
$("body").append('<div id="popover-container"><div id="popover-content">' + content + '</div></div>');
|
||||||
self.router.dispatch();
|
self.app.refresh();
|
||||||
|
self.router.dispatch(this.app);
|
||||||
self.afterOpen();
|
self.afterOpen();
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user