]> 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)
committerScott González <scott.gonzalez@gmail.com>
Mon, 9 Feb 2015 17:05:56 +0000 (12:05 -0500)
(cherry picked from commit 337e4110b0cb60c73bb27be2e2b855a75a0c4b2e)

tests/unit/resizable/resizable_options.js
ui/resizable.js

index c46801bc54d1c6f812f23afa66f8d4c4364ca7a7..9b364f5d3baac335e9bca4361e729625df3d2ab4 100644 (file)
@@ -237,7 +237,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");
@@ -265,7 +265,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 8ec986f4fe50818f5dde3db6eec63128fe6c3f89..6cfd999396997d48f1624e825dc31284ab93820e 100644 (file)
@@ -943,7 +943,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;