Proper $=jQuery aliasing in tablesorter test
authorRoan Kattouw <catrope@users.mediawiki.org>
Sat, 18 Feb 2012 10:36:32 +0000 (10:36 +0000)
committerRoan Kattouw <catrope@users.mediawiki.org>
Sat, 18 Feb 2012 10:36:32 +0000 (10:36 +0000)
tests/qunit/suites/resources/jquery/jquery.tablesorter.test.js

index 7ecdc4b..95284c7 100644 (file)
@@ -1,4 +1,4 @@
-( function () {
+( function ( $ ) {
 
 var config = {
        wgMonthNames: ['', 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
@@ -549,4 +549,4 @@ test( 'bug 32888 - Tables inside a tableheader cell', function() {
        );
 });
 
-})();
+})( jQuery );