]> source.dussan.org Git - jquery-ui.git/commitdiff
Tests: Style updates
authorAlexander Schmitz <arschmitz@gmail.com>
Fri, 21 Aug 2015 04:15:20 +0000 (00:15 -0400)
committerAlexander Schmitz <arschmitz@gmail.com>
Fri, 21 Aug 2015 12:06:24 +0000 (08:06 -0400)
Ref #14246
Ref gh-1588

tests/index.js
tests/unit/subsuite.js

index 26c07498f0cc76797f58eeae1b08ca0451b8ad3a..30771f7949236878440e53c8da7a81792ab2144b 100644 (file)
@@ -1,4 +1,4 @@
-$(function() {
+$( function() {
 
 $( "#main" )
        .addClass( "ui-widget" )
@@ -7,4 +7,4 @@ $( "#main" )
                .next()
                        .addClass( "ui-widget-content ui-corner-bottom" );
 
-});
+} );
index a591ae7113632def2203a6deb5d9ffbc56c98dfd..31a279c281838088a3b4b2f2a206e5d04efb4436 100644 (file)
@@ -1,4 +1,4 @@
-(function() {
+( function() {
 
 var versions = [
                "1.7.0", "1.7.1", "1.7.2",
@@ -9,6 +9,7 @@ var versions = [
                "compat-git"
        ],
        additionalTests = {
+
                // component: [ "other_test.html" ]
        };
 
@@ -18,8 +19,8 @@ window.testAllVersions = function( widget ) {
                function( test ) {
                        return $.map( versions, function( version ) {
                                return test + "?jquery=" + version;
-                       });
-               }));
+                       } );
+               } ) );
 };
 
-}());
+}() );