Difference between revisions of "MediaWiki:Common.js"

From Tibia Tactics Knowledge Base
Line 4: Line 4:
 
window.onload = async function(){
 
window.onload = async function(){
 
   await mw.loader.load( '/wiki/index.php?title=MediaWiki:Jquery.table-shrinker.js&action=raw&ctype=text/javascript' );
 
   await mw.loader.load( '/wiki/index.php?title=MediaWiki:Jquery.table-shrinker.js&action=raw&ctype=text/javascript' );
   $("table.shrink").tableShrinker()
+
   $("table.shrink").tableShrinker();
 
};
 
};

Revision as of 21:45, 15 May 2020

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


window.onload = async function(){
  await mw.loader.load( '/wiki/index.php?title=MediaWiki:Jquery.table-shrinker.js&action=raw&ctype=text/javascript' );
  $("table.shrink").tableShrinker();
};