No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* Any JavaScript here will be loaded for all users on every page load. */ | /* Any JavaScript here will be loaded for all users on every page load. */ | ||
console.log("Hello"); | |||
var currentPage = mw.config.get('wgPageName'); | |||
console.log(currentPage); | |||
/* Add to MediaWiki:Mobile.js for custom Mobile Menu links | /* Add to MediaWiki:Mobile.js for custom Mobile Menu links | ||
Line 17: | Line 22: | ||
} | } | ||
}, 100); // check every 100ms | }, 100); // check every 100ms | ||
Revision as of 16:14, 23 October 2024
/* Any JavaScript here will be loaded for all users on every page load. */ console.log("Hello"); var currentPage = mw.config.get('wgPageName'); console.log(currentPage); /* Add to MediaWiki:Mobile.js for custom Mobile Menu links for MW-1.34.2 with MobileFrontend and MinervaNeue Just replace span text and href to add links Hack from: https://www.mediawiki.org/wiki/Topic:Vqy1kx6q4e0bzvyb */ var timer = setInterval(function() { if ($('.menu ul:first').length) { console.log("mobile menu exists"); clearInterval(timer); $('.menu ul:first').after( '<ul class="toggli-list__list"><li class="toggle-list-item"><a class="toggle-list-item__anchor" href="/index.php?title=Special:Upload"><span class="toggle-list-item__label"><img src="/resources/assets/upload_icon.png" height="20px"/> Upload file</a></span></li></ul>'); } }, 100); // check every 100ms