Note: After saving, changes may not occur immediately. Click here to learn how to bypass your browser's cache.
  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (Cmd-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (Cmd-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences

For details and instructions about other browsers, see Wikipedia:Bypass your cache.

/** This script contains the code required for loading [[User:Inductiveload/JumpToFile.js]].
 *  All other code is located at that page.
 *
 * This is intended to reduce the code bloat on pages that do not need this functionality,
 * and also make it easier to switch in debug versions.
 */

( function () {

	var l;

	if ( [ 'Page', 'Index' ].indexOf( mw.config.get( 'wgCanonicalNamespace' ) ) !== -1 ) {

		l = function ( name, type ) {
			type = type || "text/javascript"
			return '//en.wikisource.org/w/index.php?title=User:Inductiveload/$1&action=raw&ctype='
				.replace( '$1', name ) + type;
		};

		mw.loader.load( l( 'LibParamUi.css', 'text/css' ), 'text/css' );

		$.when(
			mw.loader.getScript( l( 'LibParamUi.js' ) ),
			mw.loader.using( [ 'mediawiki.util', 'oojs-ui-core', 'oojs-ui-windows', 'oojs-ui-widgets' ] ),
			$.ready
		).done( function () {
			mw.loader.load( l( 'jump_to_file.js' ) );
		} );
	}

}() );