aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/effects/scale.js
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2015-08-24 09:32:42 -0400
committerAlexander Schmitz <arschmitz@gmail.com>2015-09-11 08:36:41 -0400
commitf520f9ef4231a0abf58c24d0811bb8f598e4dd86 (patch)
tree12056cc3df469024a4143800742fed2aa37ddff7 /tests/unit/effects/scale.js
parente021e4d6e22dff80ec3a8ba84266508d34944a35 (diff)
downloadjquery-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.js10
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" );
}
-});
+} );
} );