mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-27 16:08:55 +02:00
updated dist
This commit is contained in:
Vendored
+4
-4
@@ -671,10 +671,10 @@
|
||||
|
||||
|
||||
//jQuery adapter
|
||||
$.fn.draggable = function ( options ) {
|
||||
$.fn.drag = function ( options ) {
|
||||
return this.each(function () {
|
||||
if (!$.data(this, 'draggable')) {
|
||||
$.data(this, 'draggable', new Draggable( this, options ));
|
||||
if (!$.data(this, 'drag')) {
|
||||
$.data(this, 'drag', new Draggable( this, options ));
|
||||
}
|
||||
});
|
||||
};
|
||||
@@ -1087,7 +1087,7 @@
|
||||
}, 60)
|
||||
});
|
||||
|
||||
this.drag_api = this.$el.draggable(draggable_options).data('draggable');
|
||||
this.drag_api = this.$el.drag(draggable_options).data('draggable');
|
||||
return this;
|
||||
};
|
||||
|
||||
|
||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user