User:Syunsyunminmin/script-installer.js: Difference between revisions

From Test Wiki
Jump to navigation Jump to search
 
No edit summary
 
Line 8: Line 8:
     if( jsPage || document.getElementsByClassName( "scriptInstallerLink" ).length ||
     if( jsPage || document.getElementsByClassName( "scriptInstallerLink" ).length ||
             document.querySelector( "table.infobox-user-script" ) ) {
             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');
         mw.loader.load('https://testwiki.wiki/index.php?title=User:Syunsyunminmin/script-installer-core.js&action=raw&ctype=text/javascript');
     }
     }
}
}

Latest revision as of 13:50, 4 February 2023

/**
 * 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://testwiki.wiki/index.php?title=User:Syunsyunminmin/script-installer-core.js&action=raw&ctype=text/javascript');
    }
}