User:Syunsyunminmin/script-installer.js: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
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:// |
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');
}
}