]> source.dussan.org Git - jquery-ui.git/commitdiff
Droppable tests: Cleanup.
authorScott González <scott.gonzalez@gmail.com>
Tue, 26 Feb 2013 15:13:42 +0000 (10:13 -0500)
committerScott González <scott.gonzalez@gmail.com>
Tue, 26 Feb 2013 15:13:42 +0000 (10:13 -0500)
tests/unit/droppable/droppable_events.js

index 707eea1f4a2b733f51c2e9d508cc9191241542bd..4b8fe5acd2cd1dc3d0621500f26e0100ddd2f08f 100644 (file)
@@ -1,9 +1,6 @@
-/*
- * droppable_events.js
- */
-(function($) {
+(function( $ ) {
 
-module("droppable: events");
+module( "droppable: events" );
 
 test( "droppable destruction/recreation on drop event", function() {
        expect( 1 );
@@ -38,9 +35,7 @@ test( "droppable destruction/recreation on drop event", function() {
        ok( !droppable2.hasClass( "active" ), "subsequent droppable no longer active" );
 });
 
-// this is here to make JSHint pass "unused", and we don't want to
-// remove the parameter for when we finally implement
-$.noop();
+
 
 // todo: comment the following in when ready to actually test
 /*
@@ -65,4 +60,4 @@ test("drop", function() {
 });
 */
 
-})(jQuery);
+})( jQuery );