]> source.dussan.org Git - jquery-ui.git/commitdiff
Dialog: Fix code style
authorScott González <scott.gonzalez@gmail.com>
Wed, 31 Aug 2016 15:22:54 +0000 (11:22 -0400)
committerScott González <scott.gonzalez@gmail.com>
Wed, 31 Aug 2016 15:22:54 +0000 (11:22 -0400)
tests/unit/dialog/helper.js

index ede326156867136ea510114c659068e159a9465e..ac013ecfc6a905989a6d77b56535fc323c9d79d5 100644 (file)
@@ -34,7 +34,7 @@ return $.extend( helper, {
        },
 
        shouldResize: function( assert, element, dw, dh, msg ) {
-               var actualDH, actualDW, heightAfter, widthAfter
+               var actualDH, actualDW, heightAfter, widthAfter,
                        d = element.dialog( "widget" ),
                        handle = $( ".ui-resizable-se", d ),
                        heightBefore = element.height(),
@@ -52,7 +52,7 @@ return $.extend( helper, {
 
                // TODO: Switch to assert.close().
                // Also change the testDrag() helper.
-               assert.ok( Math.abs(actualDH - dh) <= 1 && Math.abs(actualDW - dw) <= 1, "resized[50, 50] " + msg );
+               assert.ok( Math.abs( actualDH - dh ) <= 1 && Math.abs( actualDW - dw ) <= 1, "resized[50, 50] " + msg );
        }
 } );