diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-24 09:32:42 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-09-11 08:36:41 -0400 |
commit | f520f9ef4231a0abf58c24d0811bb8f598e4dd86 (patch) | |
tree | 12056cc3df469024a4143800742fed2aa37ddff7 /tests/unit/effects/scale.js | |
parent | e021e4d6e22dff80ec3a8ba84266508d34944a35 (diff) | |
download | jquery-ui-f520f9ef4231a0abf58c24d0811bb8f598e4dd86.tar.gz jquery-ui-f520f9ef4231a0abf58c24d0811bb8f598e4dd86.zip |
Effects: Style updates
Ref #14246
Diffstat (limited to 'tests/unit/effects/scale.js')
-rw-r--r-- | tests/unit/effects/scale.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/unit/effects/scale.js b/tests/unit/effects/scale.js index 0558810c8..dc8e9ba71 100644 --- a/tests/unit/effects/scale.js +++ b/tests/unit/effects/scale.js @@ -41,7 +41,7 @@ function run( position, v, h, vo, ho ) { } test.css( css ); test.effect( effect ); - }); + } ); } function suite( position ) { @@ -55,18 +55,18 @@ function suite( position ) { */ } -$(function() { +$( function() { suite( "absolute" ); suite( "relative" ); var fixedElem = $( "<div>" ) - .css({ + .css( { position: "fixed", top: 10 - }) + } ) .appendTo( "body" ); if ( fixedElem.offset().top === 10 ) { suite( "fixed" ); } -}); +} ); } ); |