MediaWiki:Common.js

From Pikmin Fanon
Revision as of 20:47, 24 December 2021 by Espyo (talk | contribs) (Complete revamp. It looks like the other scripts weren't doing anything.)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/**********************************************************
 * Upload page script.
 * See User:Espyo.
 */
function startFanonUpload() {
  import 'https://pikminfanon.com/w/index.php?title=MediaWiki:FanonUpload.js&action=raw&ctype=text/javascript';
}


/**********************************************************
 * SCRIPT START.
 */
function onLoad() {
  mainpageTabs();
  startFanonUpload();
}

if (window.addEventListener) window.addEventListener("load", onLoad, false);
else if (window.attachEvent) window.attachEvent("onload", onLoad);