User:Ale jrb/gwatchcomp.js

From Guild Wars Wiki
Jump to navigationJump to search

Note: After publishing, 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 / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
 // GuildWatch - by [[User:Ale_jrb]]

 // Begin options --------------------------------------------------

 var enableimgmove = true;

 // End options ----------------------------------------------------

function importScript(page, lang) {
     var url = wgScriptPath + '/index.php?title='
                            + encodeURIComponent(page.replace(' ','_'))
                            + '&action=raw&ctype=text/javascript&dontcountme=s';
     if (lang) url = 'http://' + lang + '.wikipedia.org' + url;
     var s = document.createElement('script');
     s.src = url;
     s.type='text/javascript';
     document.getElementsByTagName('head')[0].appendChild(s);
 }

// Need the addPortlet function...
 importScript('User:Ale_jrb/portlet.js');

// Get the Guild Watch function...
 importScript('User:Ale_jrb/guildwatch.js');

// Get the editing functions...
 importScript('User:Ale_jrb/guildwatchfuncs.js');