summaryrefslogtreecommitdiff
path: root/assets/js/src/BoardDragAndDrop.js
diff options
context:
space:
mode:
Diffstat (limited to 'assets/js/src/BoardDragAndDrop.js')
-rw-r--r--assets/js/src/BoardDragAndDrop.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/assets/js/src/BoardDragAndDrop.js b/assets/js/src/BoardDragAndDrop.js
index 5d2844de..77d22b55 100644
--- a/assets/js/src/BoardDragAndDrop.js
+++ b/assets/js/src/BoardDragAndDrop.js
@@ -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() {