Lietotājs:Wordsthink/monobook.js

No ''Wikibooks''

Pārlēkt uz: navigācija, meklēt

Piezīme - Pēc saglabāšanas, lai būtu redzamas izmaiņas, var būt nepieciešamas iztīrīt pārlūka kešatmiņu. Mozilla / Firefox / Safari: turi nospiestu Shift un klikšķini Reload, vai arī spied Ctrl-F5 vai Ctrl-R (Command-R uz Macintosh); Konqueror: klikšķini Reload vai spied uz F5; Opera: kešu var iztīrīt Tools → Preferences; Internet Explorer: turi nospiestu Ctrl un klikšķini Refresh, vai spied Ctrl-F5.

 /** Import module *************************************************************
  *
  *  Description: Includes a raw wiki page as javascript or CSS, 
  *               used for including user made modules.
  *  Maintainers: [[User:AzaToth]]
  */
 importedScripts = {}; // object keeping track of included scripts, so a script ain't included twice
 function importScript( page ) {
     if( importedScripts[page] ) {
         return;
     }
     importedScripts[page] = true;
     var url = wgScriptPath
             + '/index.php?title='
             + encodeURIComponent( page.replace( / /g, '_' ) )
             + '&action=raw&ctype=text/javascript';
     var scriptElem = document.createElement( 'script' );
     scriptElem.setAttribute( 'src' , url );
     scriptElem.setAttribute( 'type' , 'text/javascript' );
     document.getElementsByTagName( 'head' )[0].appendChild( scriptElem );
 }
 
 function importStylesheet( page ) {
     var sheet = '@import "'
               + wgScriptPath
               + '/index.php?title='
               + encodeURIComponent( page.replace( / /g, '_' ) )
               + '&action=raw&ctype=text/css";'
     var styleElem = document.createElement( 'style' );
     styleElem.setAttribute( 'type' , 'text/css' );
     styleElem.appendChild( document.createTextNode( sheet ) );
     document.getElementsByTagName( 'head' )[0].appendChild( styleElem );
 }
importScript('User:Wordsthink/qpreview.js');
importScript('User:Wordsthink/edittools.js');