Open main menu

Linux and Unix Users Group at Virginia Teck Wiki β

Changes

MediaWiki:Common.js

634 bytes added, 21:37, 1 April 2017
Created page with "Any JavaScript here will be loaded for all users on every page load.: function isSortedTablePage() { return ( wgPageName == "Project_list" || wgPageName == "Other_Pa..."
/* Any JavaScript here will be loaded for all users on every page load. */
function isSortedTablePage() {
return ( wgPageName == "Project_list" || wgPageName == "Other_Page_To_Sort" );
}

jQuery( document ).ready( function( $ ) {
// wrapped in "mw.loader.using" so this doesn't execute until Tablesorter has loaded
mw.loader.using( 'jquery.tablesorter', function() {
if( isSortedTablePage() ) $('table.sortable').tablesorter( {sortList: [ { 0: 'asc'} ]} )
// or look for tables with an ID attribute of "sortMe" on any page
// $( '#sortMe' ).tablesorter( {sortList: [ { 0: 'asc'} ]} )
} );
} );
Anonymous user