Jump to content

User:UncleDouggie/refToolbarWrapper.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
// Forked from [[MediaWiki:Gadget-refToolbar.js]] on February 17, 2011

if ( wgAction == 'edit' || wgAction == 'submit' ) {
  var refToolbarInstalled = true;
  if (wgServer == "https://secure.wikimedia.org") {
    mw.loader.load("https://secure.wikimedia.org/wikipedia/en/w/index.php?title=User:Mr.Z-man/refToolbar_2.0/base.js&action=raw&ctype=text/javascript");
  } else {
    mw.loader.load('//wiki.riteme.site/w/index.php?title=User:Mr.Z-man/refToolbar_2.0/base.js&action=raw&ctype=text/javascript');
  }
  if( typeof $.wikiEditor != 'undefined' && typeof $.wikiEditor.modules.dialogs != 'undefined' ) {
    importScript('User:Mr.Z-man/refToolbar 2.0.js');
  } else if( typeof $.wikiEditor != 'undefined' ) {
    importScript('User:Mr.Z-man/refToolbarIE.js');
  } else {
    importScript('User:UncleDouggie/refToolbarPlus.js');
  }
}