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)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/**
* See [[MediaWiki:FileUsageAuto-update/code.js/load.js]] for code!
*
* Loads the script conditionally because of its large size,
* rather than having a conditional built into the import
* statement for extendability later.
*/
(function() {
var config = mw.config.get([
'wgCanonicalSpecialPageName',
'wgNamespaceNumber'
]);
if (
(
config.wgCanonicalSpecialPageName == 'Movepage' ||
config.wgNamespaceNumber === 6 ||
$('.fuau').length > 0
) &&
window.Storage
) {
importArticle({
type: 'script',
article: 'u:dev:MediaWiki:FileUsageAuto-update/code.js/load.js'
});
}
})();