Difference between revisions of "MediaWiki:Common.js"
From Tycoon Gaming
m |
m |
||
Line 4: | Line 4: | ||
mw.loader.load( '/wiki/index.php?title=MediaWiki:MainMenu.js&action=raw&ctype=text/javascript'); | mw.loader.load( '/wiki/index.php?title=MediaWiki:MainMenu.js&action=raw&ctype=text/javascript'); | ||
mw.loader.load( '/wiki/index.php?title=MediaWiki:PageSpecific.js&action=raw&ctype=text/javascript'); | mw.loader.load( '/wiki/index.php?title=MediaWiki:PageSpecific.js&action=raw&ctype=text/javascript'); | ||
− | |||
− | |||
+ | mw.loader.using(['https://unpkg.com/[email protected]/darkreader.js']).then(function() { | ||
+ | DarkReader.enable(); | ||
+ | }).catch(function(error) { | ||
+ | console.log('An error occurred while loading DarkReader:', error); | ||
+ | }); | ||
$(document).ready(function() { | $(document).ready(function() { | ||
− | |||
if ( window.location !== window.parent.location ) { | if ( window.location !== window.parent.location ) { | ||
const elem = document.getElementById('p-personal-container'); | const elem = document.getElementById('p-personal-container'); |
Revision as of 15:44, 29 December 2023
mw.loader.load( '/wiki/index.php?title=Mediawiki:Middleclick.js&action=raw&ctype=text/javascript'); mw.loader.load( '/wiki/index.php?title=MediaWiki:LastPage.js&action=raw&ctype=text/javascript'); mw.loader.load( '/wiki/index.php?title=MediaWiki:MoveTOC.js&action=raw&ctype=text/javascript'); mw.loader.load( '/wiki/index.php?title=MediaWiki:MainMenu.js&action=raw&ctype=text/javascript'); mw.loader.load( '/wiki/index.php?title=MediaWiki:PageSpecific.js&action=raw&ctype=text/javascript'); mw.loader.using(['https://unpkg.com/[email protected]/darkreader.js']).then(function() { DarkReader.enable(); }).catch(function(error) { console.log('An error occurred while loading DarkReader:', error); }); $(document).ready(function() { if ( window.location !== window.parent.location ) { const elem = document.getElementById('p-personal-container'); elem.style.display = 'none'; } });