Difference between revisions of "MediaWiki:Common.js"

From CJ-JT Wiki
Jump to navigation Jump to search
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. */
  
setTimeout( alterShowEntries, 5000);
+
setTimeout( showAllEntries, 5000);
  
 
function showAllEntries() {
 
function showAllEntries() {

Revision as of 09:47, 25 April 2023

/* Any JavaScript here will be loaded for all users on every page load. */

setTimeout( showAllEntries, 5000);

function showAllEntries() {
    var opt = new Option("all", "1500");
    $(opt).html("all");
    var t = $('label select[name="DataTables_Table_0_length"]').append(opt);
}