MediaWiki:Common.js

From Fallen London Wiki

Note: After saving, 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: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* Any JavaScript here will be loaded for all users on every page load. */

// Helper functions
importScript = function(pageName) {
	mw.loader.load( '/w/index.php?title=' + encodeURIComponent( pageName ) + '&action=raw&ctype=text/javascript' );
};

importStylesheet = function(pageName) {
	mw.loader.load( '/w/index.php?title=' + encodeURIComponent( pageName ) + '&action=raw&ctype=text/css', 'text/css' );
};

//source: https://en.wikipedia.org/w/index.php?title=User:Blue-Haired_Lawyer/footnote_popups.js
mw.loader.load('/w/index.php?title=MediaWiki:RefPopups.js&action=raw&ctype=text/javascript', 'text/javascript' );
mw.loader.load('/w/index.php?title=MediaWiki:RefPopups.css&action=raw&ctype=text/css', 'text/css' );

// Dynamic Templates
$(function() {
	if ($('.jcConfig').length) {
		importScript('MediaWiki:Common.js/calc.js');
		importStylesheet('MediaWiki:Common.css/calc.css');
	}
});