mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-31 16:23:50 +02:00
Fire draggable.stop event after data attributes have been updated.
This commit is contained in:
@@ -1586,10 +1586,6 @@
|
||||
this.$player.coords().grid.row = row;
|
||||
this.$player.coords().grid.col = col;
|
||||
|
||||
if (this.options.draggable.stop) {
|
||||
this.options.draggable.stop.call(this, event, ui);
|
||||
}
|
||||
|
||||
this.$player.addClass('player-revert').removeClass('player')
|
||||
.attr({
|
||||
'data-col': col,
|
||||
@@ -1598,6 +1594,10 @@
|
||||
'left': '',
|
||||
'top': ''
|
||||
});
|
||||
|
||||
if (this.options.draggable.stop) {
|
||||
this.options.draggable.stop.call(this, event, ui);
|
||||
}
|
||||
|
||||
this.$preview_holder.remove();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user