Hi!
Sometimes you need to explicitly set a container for dragula. So, instead of this in sort.js:
init: function () {
this.dragula = dragula([this.$target[0]], {
moves: XF.proxy(this, 'isMoveable'),
accepts: XF.proxy(this, 'isValidTarget')
});
},
I propse this:
init...