mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
updated diet
This commit is contained in:
14
dist/jquery.gridster.js
vendored
14
dist/jquery.gridster.js
vendored
@@ -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; }
|
||||
|
4
dist/jquery.gridster.min.js
vendored
4
dist/jquery.gridster.min.js
vendored
File diff suppressed because one or more lines are too long
14
dist/jquery.gridster.with-extras.js
vendored
14
dist/jquery.gridster.with-extras.js
vendored
@@ -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; }
|
||||
|
4
dist/jquery.gridster.with-extras.min.js
vendored
4
dist/jquery.gridster.with-extras.min.js
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user