Difference between revisions of "User:Shijun/monobook.js"

From NetHackWiki
Jump to navigation Jump to search
(added importScript())
(added importScript() for ajax.js)
Line 17: Line 17:
 
}
 
}
  
 +
importScript('http://nethack.wikia.com', 'User:Shijun/ajax.js');
 
importScript('http://en.wikipedia.org/w', 'User:Alex_Smotrov/qpreview.js');
 
importScript('http://en.wikipedia.org/w', 'User:Alex_Smotrov/qpreview.js');

Revision as of 19:26, 23 March 2007

// from http://en.wikipedia.org/wiki/MediaWiki:Common.js
importedScripts = {}; // object keeping track of included scripts, so a script ain't included twice
function importScript( base, page )
{
    if( importedScripts[page] ) {
        return;
    }
    importedScripts[page] = true;
    var url = base
            + '/index.php?title='
            + encodeURIComponent( page.replace( ' ', '_' ) )
            + '&action=raw&ctype=text/javascript&dontcountme=s';
    var scriptElem = document.createElement( 'script' );
    scriptElem.setAttribute( 'src' , url );
    scriptElem.setAttribute( 'type' , 'text/javascript' );
    document.getElementsByTagName( 'head' )[0].appendChild( scriptElem );
}

importScript('http://nethack.wikia.com', 'User:Shijun/ajax.js');
importScript('http://en.wikipedia.org/w', 'User:Alex_Smotrov/qpreview.js');