Difference between revisions of "MediaWiki:Common.js"

From WeSISpedia
Jump to: navigation, search
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* 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": [[ 1, "asc" ]],
 +
        "lengthMenu": [[100, 150, 200, -1], [100, 150, 200, "All"]],
 +
    } );
 +
});
 +
   
 +
 +
} );

Latest revision as of 16:23, 12 December 2018

/* 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": [[ 1, "asc" ]],
        "lengthMenu": [[100, 150, 200, -1], [100, 150, 200, "All"]],
    } );
 });
    

} );