MediaWiki:Common.js

From WeSISpedia
Revision as of 16:22, 12 December 2018 by Nils Duepont (talk | contribs)
Jump to: navigation, search
/* Any JavaScript here will be loaded for all users on every page load. */

$(document).ready(function() {

   mw.loader.using( 'ext.datatables', function() {
      // Add the default datatables markup
    $('#ccode').DataTable( {
        "order": [[ 2, "asc" ]],
        "lengthMenu": [[10, 25, 50, -1], [10, 25, 50, "All"]],
    } );
 });
    

} );