mirror of
https://github.com/stylersnico/librenms.git
synced 2026-07-28 00:24:21 +02:00
updated diet
This commit is contained in:
Vendored
+9
-5
@@ -426,12 +426,12 @@
|
||||
this.disabled = false;
|
||||
this.events();
|
||||
|
||||
$(window).bind('resize.gridster-draggable',
|
||||
$(window).bind('resize.gridster-draggable',
|
||||
throttle($.proxy(this.calculate_positions, this), 200));
|
||||
};
|
||||
|
||||
fn.events = function() {
|
||||
this.$container.on('selectstart.gridster-draggable',
|
||||
this.$container.on('selectstart.gridster-draggable',
|
||||
$.proxy(this.on_select_start, this));
|
||||
|
||||
this.$container.on(pointer_events.start, this.options.items,
|
||||
@@ -576,7 +576,7 @@
|
||||
return false;
|
||||
});
|
||||
|
||||
return false;
|
||||
if (!isTouch) { return false; }
|
||||
};
|
||||
|
||||
|
||||
@@ -2089,7 +2089,9 @@
|
||||
return true; //break
|
||||
}
|
||||
|
||||
upper_rows[tcol].sort();
|
||||
upper_rows[tcol].sort(function(a, b) {
|
||||
return a - b;
|
||||
});
|
||||
});
|
||||
|
||||
if (!result) { return false; }
|
||||
@@ -2144,7 +2146,9 @@
|
||||
return true; //break
|
||||
}
|
||||
|
||||
upper_rows[tcol].sort();
|
||||
upper_rows[tcol].sort(function(a, b) {
|
||||
return a - b;
|
||||
});
|
||||
});
|
||||
|
||||
if (!result) { return false; }
|
||||
|
||||
Vendored
+2
-2
File diff suppressed because one or more lines are too long
Vendored
+9
-5
@@ -426,12 +426,12 @@
|
||||
this.disabled = false;
|
||||
this.events();
|
||||
|
||||
$(window).bind('resize.gridster-draggable',
|
||||
$(window).bind('resize.gridster-draggable',
|
||||
throttle($.proxy(this.calculate_positions, this), 200));
|
||||
};
|
||||
|
||||
fn.events = function() {
|
||||
this.$container.on('selectstart.gridster-draggable',
|
||||
this.$container.on('selectstart.gridster-draggable',
|
||||
$.proxy(this.on_select_start, this));
|
||||
|
||||
this.$container.on(pointer_events.start, this.options.items,
|
||||
@@ -576,7 +576,7 @@
|
||||
return false;
|
||||
});
|
||||
|
||||
return false;
|
||||
if (!isTouch) { return false; }
|
||||
};
|
||||
|
||||
|
||||
@@ -2089,7 +2089,9 @@
|
||||
return true; //break
|
||||
}
|
||||
|
||||
upper_rows[tcol].sort();
|
||||
upper_rows[tcol].sort(function(a, b) {
|
||||
return a - b;
|
||||
});
|
||||
});
|
||||
|
||||
if (!result) { return false; }
|
||||
@@ -2144,7 +2146,9 @@
|
||||
return true; //break
|
||||
}
|
||||
|
||||
upper_rows[tcol].sort();
|
||||
upper_rows[tcol].sort(function(a, b) {
|
||||
return a - b;
|
||||
});
|
||||
});
|
||||
|
||||
if (!result) { return false; }
|
||||
|
||||
+2
-2
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user