aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/effects/scale.js
diff options
context:
space:
mode:
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" );
}
-});
+} );
} );