aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/helper.js
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2015-08-21 00:13:44 -0400
committerAlexander Schmitz <arschmitz@gmail.com>2015-08-21 08:06:24 -0400
commitc13ddf22ed33ea23e5410735c118550a673feb58 (patch)
treeb58b1c2010dce954ffac17f65ed259614ce00c5a /tests/lib/helper.js
parent8e28f474e5088fc4502131d76aba7807930f15af (diff)
downloadjquery-ui-c13ddf22ed33ea23e5410735c118550a673feb58.tar.gz
jquery-ui-c13ddf22ed33ea23e5410735c118550a673feb58.zip
Tests: Style updates
Ref #14246 Ref gh-1588
Diffstat (limited to 'tests/lib/helper.js')
-rw-r--r--tests/lib/helper.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/lib/helper.js b/tests/lib/helper.js
index cc7d8c000..400d85489 100644
--- a/tests/lib/helper.js
+++ b/tests/lib/helper.js
@@ -1,4 +1,4 @@
-define([
+define( [
"jquery"
], function( $ ) {
@@ -9,10 +9,10 @@ exports.forceScrollableWindow = function( appendTo ) {
// The main testable area is 10000x10000 so to enforce scrolling,
// this DIV must be greater than 10000 to work
return $( "<div>" )
- .css({
+ .css( {
height: "11000px",
width: "11000px"
- })
+ } )
.appendTo( appendTo || "#qunit-fixture" );
};
@@ -30,4 +30,4 @@ exports.onFocus = function( element, onFocus ) {
return exports;
-});
+} );