User:Super Sonic X/monobook.js
From Homestar Runner Wiki
(Difference between revisions)
| Line 28: | Line 28: | ||
var tb = document.getElementById('p-tb').getElementsByTagName('ul')[0]; | var tb = document.getElementById('p-tb').getElementsByTagName('ul')[0]; | ||
addlilink(tb, 'http://s13.invisionfree.com/Fanstuff/', 'Forum',''); | addlilink(tb, 'http://s13.invisionfree.com/Fanstuff/', 'Forum',''); | ||
| - | addlilink(tb, 'http://fanstuff.hrwiki.org/index.php/User:Super Sonic X/Sig', 'Edit Signature', ''); | + | addlilink(tb, '/index.php/User:Super Sonic X/Sig', 'Edit Signature', ''); |
| + | addlilink(tb, 'http://fanstuff.hrwiki.org/index.php/User:Super Sonic X/Sig', 'Edit HRFWiki Signature', ''); | ||
addlilink(tb, 'http://fanstuff.hrwiki.org/index.php/SSXMails', 'SSXMails', ''); | addlilink(tb, 'http://fanstuff.hrwiki.org/index.php/SSXMails', 'SSXMails', ''); | ||
addlilink(tb, 'http://fanstuff.hrwiki.org/index.php/Stuff With Class', 'Stuff With Class', ''); | addlilink(tb, 'http://fanstuff.hrwiki.org/index.php/Stuff With Class', 'Stuff With Class', ''); | ||
Revision as of 01:23, 3 November 2005
/* NOT MY OWN WORK. MADE BY OTHER USERS. */
/* <nowiki> */
/* Thanks to http://en.wikipedia.org/wiki/User:Trilobite/Tools for the below tweaks! */
window.onload = Main;
function Main() {
addtoolboxlinks();
LivePreviewInstall();
morelinks();
}
/* Adds some useful links to the "toolbox" on the sidebar. */
function addlilink(tabs, url, name, id) {
var na = document.createElement('a');
na.href = url;
na.id = id;
na.appendChild(document.createTextNode(name));
var li = document.createElement('li');
li.appendChild(na);
tabs.appendChild(li);
return li;
}
/* I don't mind if the following section is copied. */
function addtoolboxlinks() {
var tb = document.getElementById('p-tb').getElementsByTagName('ul')[0];
addlilink(tb, 'http://s13.invisionfree.com/Fanstuff/', 'Forum','');
addlilink(tb, '/index.php/User:Super Sonic X/Sig', 'Edit Signature', '');
addlilink(tb, 'http://fanstuff.hrwiki.org/index.php/User:Super Sonic X/Sig', 'Edit HRFWiki Signature', '');
addlilink(tb, 'http://fanstuff.hrwiki.org/index.php/SSXMails', 'SSXMails', '');
addlilink(tb, 'http://fanstuff.hrwiki.org/index.php/Stuff With Class', 'Stuff With Class', '');
addlilink(tb, 'http://fanstuff.hrwiki.org/index.php/Homestar Adventure Game DX!', 'Homestar Adventure Game DX!', '');
addlilink(tb, 'http://fanstuff.hrwiki.org/index.php/User:Super Sonic X/Simpsons:H&R', 'Simpsons: Hit & Run Guide', '');
addlilink(tb, 'http://www.homestarrunner.com', 'Homestar Runner.com', '');
}
/* Adds "LivePreview" [http://en.wikipedia.org/wiki/User:Pilaf/Live_Preview]. */
wpUserName = 'Super Sonic X';
wpShowImages = true;
document.write('<script type="text/javascript" src="http://en.wikipedia.org/w/index.php?title=User:Pilaf/livepreview.js&action=raw&ctype=text/javascript&dontcountme=s"></script>');
/* </nowiki> */
