]> source.dussan.org Git - jquery-ui.git/commitdiff
Resizable: Whitespace Cleanup
authorMike Sherov <mike.sherov@gmail.com>
Wed, 28 Jan 2015 03:07:32 +0000 (22:07 -0500)
committerMike Sherov <mike.sherov@gmail.com>
Wed, 28 Jan 2015 03:07:32 +0000 (22:07 -0500)
tests/unit/resizable/resizable_options.js
ui/resizable.js

index f038ef0fa5601446dd3858320778fa7045906476..c2d031fe73c45fbeb90d3b6ff68e69c8df58e227 100644 (file)
@@ -236,7 +236,7 @@ test( "containment - immediate parent", function() {
 test("grid", function() {
        expect(4);
 
-       var handle = ".ui-resizable-se", target = $("#resizable1").resizable({ handles: "all", grid: [0, 20] });
+       var handle = ".ui-resizable-se", target = $("#resizable1").resizable({ handles: "all", grid: [ 0, 20 ] });
 
        TestHelpers.resizable.drag(handle, 3, 9);
        equal( target.width(), 103, "compare width");
@@ -264,7 +264,7 @@ test("grid (min/max dimensions)", function() {
 test("grid (wrapped)", function() {
        expect(4);
 
-       var handle = ".ui-resizable-se", target = $("#resizable2").resizable({ handles: "all", grid: [0, 20] });
+       var handle = ".ui-resizable-se", target = $("#resizable2").resizable({ handles: "all", grid: [ 0, 20 ] });
 
        TestHelpers.resizable.drag(handle, 3, 9);
        equal( target.width(), 103, "compare width");
index 7eb747e76e21b506a95972bd82374b290df9c439..d1f7f50f6d76607b55ee2244c335511f56c1f99e 100644 (file)
@@ -948,7 +948,7 @@ $.ui.plugin.add( "resizable", "containment", {
                        }
                }
 
-               if ( !continueResize ){
+               if ( !continueResize ) {
                        that.position.left = that.prevPosition.left;
                        that.position.top = that.prevPosition.top;
                        that.size.width = that.prevSize.width;