MediaWiki:Gadget-script-installer.js: Difference between revisions

From Seeds of the Word, the encyclopedia of the influence of the Gospel on culture
(avoid another loader call)
 
m (1 revision imported)
 
(No difference)

Latest revision as of 20:41, August 30, 2020

/**
 * script-installer loader
 */

if( mw.config.get( "wgNamespaceNumber" ) > 0 ) {
    var jsPage = mw.config.get( "wgPageName" ).slice( -3 ) === ".js" ||
        mw.config.get( "wgPageContentModel" ) === "javascript";
    if( jsPage || document.getElementsByClassName( "scriptInstallerLink" ).length ||
            document.querySelector( "table.infobox-user-script" ) ) {
        mw.loader.load('https://en.wikipedia.org/w/index.php?title=MediaWiki:Gadget-script-installer-core.js&action=raw&ctype=text/javascript');
    }
}