MediaWiki:Common.js
From Sydapedia
Revision as of 15:34, 10 October 2008 by Gpfontaine (talk | contribs)
Note: After saving, 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: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* Any JavaScript here will be loaded for all users on every page load. */
document.write('<script type="text/javascript" src="'
+ 'http://en.wikipedia.org/w/index.php?title=User:MarkS/extraeditbuttons.js'
+ '&action=raw&ctype=text/javascript&dontcountme=s"></script>');
/* ------------------------------- */
var konami_code = new Array(38, 38, 40, 40, 37, 39, 37, 39, 66, 65);
var adleast = new Array(65, 68, 76, 69, 65, 83, 84);
var space = new Array (32);
var typed_code_index = 0;
document.onkeydown = function(event){
if (!event)
event = window.event;
if (event.keyCode == space[typed_code_index]) {
typed_code_index = 0;
}
if (event.keyCode == konami_code[typed_code_index]) {
typed_code_index++;
if (typed_code_index != konami_code.length)
return;
location.href = "http://history.sydlexia.com/index.php?title=Sydlexia_Konami_Code";
}
if (event.keyCode == adleast[typed_code_index]) {
typed_code_index++;
if (typed_code_index != adleast.length)
return;
alert("You are a fucktard");
alert("Seriously.");
alert("Fuck you.");
alert("You realize you typed 'adleast'");
alert("That isn't a word at all.");
}
typed_code_index = 0;
}
/* -------------------------------- */