Alright, IE7 is fixed by r89613. IE6 stays problematic, for some reason it contains...
[mediawiki.git] / resources / mediawiki.action / mediawiki.action.view.tablesorting.js
blob09aefc0974c133563a3b4b807a9318b2995e32c9
1 // Lazy load jquery.tablesorter
3 ( function( $ ) {
4         if ( $( 'table.sortable' ).length ) {
5                 mw.loader.using( 'jquery.tablesorter', function() {
6                         $( 'table.sortable' ).tablesorter(); 
7                 } );
8         }
9 } )( jQuery );