Merge pull-request #3069
This commit is contained in:
commit
cf48b31762
|
|
@ -38,6 +38,7 @@ Kanboard.BoardColumnView.prototype.toggle = function(columnId) {
|
|||
else {
|
||||
this.hideColumn(columnId);
|
||||
}
|
||||
this.app.get("BoardDragAndDrop").dragAndDrop();
|
||||
};
|
||||
|
||||
Kanboard.BoardColumnView.prototype.hideColumn = function(columnId) {
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@ Kanboard.BoardDragAndDrop = function(app) {
|
|||
|
||||
Kanboard.BoardDragAndDrop.prototype.execute = function() {
|
||||
if (this.app.hasId("board")) {
|
||||
this.dragAndDrop();
|
||||
this.executeListeners();
|
||||
this.dragAndDrop();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
@ -101,8 +101,8 @@ Kanboard.BoardDragAndDrop.prototype.refresh = function(data) {
|
|||
$("#board-container").replaceWith(data);
|
||||
|
||||
this.app.hideLoadingIcon();
|
||||
this.dragAndDrop();
|
||||
this.executeListeners();
|
||||
this.dragAndDrop();
|
||||
};
|
||||
|
||||
Kanboard.BoardDragAndDrop.prototype.executeListeners = function() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue