mirror of
https://github.com/stylersnico/librenms.git
synced 2026-08-02 16:01:56 +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.row = row;
|
||||||
this.$player.coords().grid.col = col;
|
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')
|
this.$player.addClass('player-revert').removeClass('player')
|
||||||
.attr({
|
.attr({
|
||||||
'data-col': col,
|
'data-col': col,
|
||||||
@@ -1598,6 +1594,10 @@
|
|||||||
'left': '',
|
'left': '',
|
||||||
'top': ''
|
'top': ''
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (this.options.draggable.stop) {
|
||||||
|
this.options.draggable.stop.call(this, event, ui);
|
||||||
|
}
|
||||||
|
|
||||||
this.$preview_holder.remove();
|
this.$preview_holder.remove();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user