We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe5534b commit 3188e1cCopy full SHA for 3188e1c
tests/index.js
@@ -1,4 +1,4 @@
1
-$(function() {
+$( function() {
2
3
$( "#main" )
4
.addClass( "ui-widget" )
@@ -7,4 +7,4 @@ $( "#main" )
7
.next()
8
.addClass( "ui-widget-content ui-corner-bottom" );
9
10
-});
+} );
tests/unit/subsuite.js
-(function() {
+( function() {
var versions = [
"1.7.0", "1.7.1", "1.7.2",
@@ -9,6 +9,7 @@ var versions = [
"compat-git"
],
11
additionalTests = {
12
+
13
// component: [ "other_test.html" ]
14
};
15
@@ -18,8 +19,8 @@ window.testAllVersions = function( widget ) {
18
19
function( test ) {
20
return $.map( versions, function( version ) {
21
return test + "?jquery=" + version;
- });
22
- }));
+ } );
23
+ } ) );
24
25
-}());
26
+}() );
0 commit comments