aboutsummaryrefslogtreecommitdiffstats
path: root/ui/source/ui.resizable.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/source/ui.resizable.js')
-rw-r--r--ui/source/ui.resizable.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/source/ui.resizable.js b/ui/source/ui.resizable.js
index 286f61d7f..2203f3945 100644
--- a/ui/source/ui.resizable.js
+++ b/ui/source/ui.resizable.js
@@ -582,7 +582,7 @@ $.ui.plugin.add("resizable", "grid", {
resize: function(e, ui) {
var o = ui.options, self = $(this).data("resizable"), cs = self.size, os = self.originalSize, op = self.originalPosition, a = self.axis, ratio = o._aspectRatio || e.shiftKey;
o.grid = typeof o.grid == "number" ? [o.grid, o.grid] : o.grid;
- var ox = Math.round((cs.width - os.width) / o.grid[0]) * o.grid[0], oy = Math.round((cs.height - os.height) / o.grid[1]) * o.grid[1];
+ var ox = Math.round((cs.width - os.width) / (o.grid[0]||1)) * (o.grid[0]||1), oy = Math.round((cs.height - os.height) / (o.grid[1]||1)) * (o.grid[1]||1);
if (/^(se|s|e)$/.test(a)) {
self.size.width = os.width + ox;