User:Ian/monobook.js: Difference between revisions

From wiki.zmanda.com
Jump to navigation Jump to search
No edit summary
No edit summary
Line 3: Line 3:


function hookEvent(hookName, hookFunct) {
function hookEvent(hookName, hookFunct) {
        document.onload = hookFunct;
if (window.addEventListener) {
if (window.addEventListener) {
window.addEventListener(hookName, hookFunct, false);
window.addEventListener(hookName, hookFunct, false);
Line 13: Line 14:


document.write('<script type="text/javascript" src="http://en.wikipedia.org/w/index.php?title=User:Lupin/popups.js&action=raw&ctype=text/javascript&dontcountme=s"></script>');
document.write('<script type="text/javascript" src="http://en.wikipedia.org/w/index.php?title=User:Lupin/popups.js&action=raw&ctype=text/javascript&dontcountme=s"></script>');
document.onload = setupPopups()

Revision as of 01:54, 12 June 2007

function siteArticlePath(){ return '/index.php'; }
function siteBotInterfacePath(){ return '/'; }

function hookEvent(hookName, hookFunct) {
        document.onload = hookFunct;
	if (window.addEventListener) {
		window.addEventListener(hookName, hookFunct, false);
	} else if (window.attachEvent) {
		window.attachEvent("on" + hookName, hookFunct);
	}
}

popupsUseQueryInterface = false;

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