Resizable: correct width when grid approaches zero

Fixes #10590
This commit is contained in:
Mike Sherov
2015-01-27 22:08:05 -05:00
parent 337e4110b0
commit 9493839f23
2 changed files with 3 additions and 3 deletions

View File

@@ -310,12 +310,12 @@ test( "grid - maintains grid with padding and border when approaching no dimensi
height: 80
}).resizable({
handles: "all",
grid: 50
grid: [ 50, 12 ]
});
TestHelpers.resizable.drag( handle, 50, 50 );
equal( target.outerWidth(), 50, "compare width" );
equal( target.outerHeight(), 50, "compare height" );
equal( target.outerHeight(), 52, "compare height" );
});
test("ui-resizable-se { handles: 'all', minWidth: 60, minHeight: 60, maxWidth: 100, maxHeight: 100 }", function() {

View File

@@ -1170,7 +1170,7 @@ $.ui.plugin.add("resizable", "grid", {
that.size.width = newWidth;
that.position.left = op.left - ox;
} else {
newWidth = gridY - outerDimensions.height;
newWidth = gridX - outerDimensions.width;
that.size.width = newWidth;
that.position.left = op.left + os.width - newWidth;
}