aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable/core.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/droppable/core.js')
-rw-r--r--tests/unit/droppable/core.js22
1 files changed, 11 insertions, 11 deletions
diff --git a/tests/unit/droppable/core.js b/tests/unit/droppable/core.js
index 75951c1bc..c4ce0378c 100644
--- a/tests/unit/droppable/core.js
+++ b/tests/unit/droppable/core.js
@@ -4,26 +4,26 @@ define( [
"ui/widgets/droppable"
], function( $, testHelper ) {
-module("droppable: core");
+module( "droppable: core" );
-test("element types", function() {
- var typeNames = ("p,h1,h2,h3,h4,h5,h6,blockquote,ol,ul,dl,div,form" +
+test( "element types", function() {
+ var typeNames = ( "p,h1,h2,h3,h4,h5,h6,blockquote,ol,ul,dl,div,form" +
",table,fieldset,address,ins,del,em,strong,q,cite,dfn,abbr" +
",acronym,code,samp,kbd,var,img,hr" +
- ",input,button,label,select,iframe").split(",");
+ ",input,button,label,select,iframe" ).split( "," );
expect( typeNames.length );
- $.each(typeNames, function(i) {
- var typeName = typeNames[i],
- el = $(document.createElement(typeName)).appendTo("body");
+ $.each( typeNames, function( i ) {
+ var typeName = typeNames[ i ],
+ el = $( document.createElement( typeName ) ).appendTo( "body" );
- (typeName === "table" && el.append("<tr><td>content</td></tr>"));
+ ( typeName === "table" && el.append( "<tr><td>content</td></tr>" ) );
el.droppable();
testHelper.shouldDrop();
- el.droppable("destroy");
+ el.droppable( "destroy" );
el.remove();
- });
-});
+ } );
+} );
} );