Browse Source

Trigger end move for all dropped models. Closes #1196

pull/1229/head
Artur Arseniev 8 years ago
parent
commit
2370e08580
  1. 2
      src/utils/Sorter.js

2
src/utils/Sorter.js

@ -947,7 +947,7 @@ module.exports = Backbone.View.extend({
this.toggleSortCursor();
this.toMove = null;
isFunction(onEndMove) && onEndMove(moved, this);
isFunction(onEndMove) && moved.forEach(m => onEndMove(m, this));
},
/**

Loading…
Cancel
Save