User:Stirfriedcalamari/monobook.js

From Wiktionary, the free dictionary
Jump to navigation Jump to search

Note – after saving, you may have to bypass your browser’s cache to see the changes.

  • Mozilla / Firefox / Safari: hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (Command-R on a Macintosh);
  • Konqueror and Chrome: click Reload or press F5;
  • Opera: clear the cache in Tools → Preferences;
  • Internet Explorer: hold Ctrl while clicking Refresh, or press Ctrl-F5.

This JavaScript is executed for Stirfriedcalamari on every page load, when User:Stirfriedcalamari is using the Monobook skin.


// See also [[MediaWiki:Monobook.js]], [[Wiktionary:Customizing your monobook]]

// [[User:Hippietrail/citetab.js]]

document.write('<script type="text/javascript" src="'
             + 'http://en.wiktionary.org/w/index.php?title=User:Hippietrail/citetab.js'
             + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');

// [[User:Hippietrail/personalsidebar.js]]

document.write('<script type="text/javascript" src="'
             + 'http://en.wiktionary.org/w/index.php?title=User:Hippietrail/personalsidebar.js'
             + '&action=raw&ctype=text/javascript&dontcountme=s"></script>');

function customiseMyPage() {
  addCiteTab();
  personalizeSidebar();
}

var is_macmsie = false;

// none of this seems to work on Mac Internet Explorer 5
if (navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.indexOf("­Mac") != -1) is_macmsie = true;

if (is_macmsie != true) {
  if (window.addEventListener) window.addEventListener("load",customiseMyPage,false);
  else if (window.attachEvent) window.attachEvent("onload",customiseMyPage);
}

/*
</pre>
*/