Created page with "→Any JavaScript here will be loaded for all users on every page load.: →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);..." |
No edit summary |
||
Line 14: | Line 14: | ||
clearInterval(timer); | clearInterval(timer); | ||
$('.menu ul:first').after( | $('.menu ul:first').after( | ||
'<ul class="toggli-list__list"><li class="toggle-list-item"><a class="toggle-list-item__anchor" href=" | '<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">Upload file</a></span></li></ul>'); | ||
} | } | ||
}, 100); // check every 100ms | }, 100); // check every 100ms |
Revision as of 08:26, 7 August 2024
/* Any JavaScript here will be loaded for all users on every page load. */ /* 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">Upload file</a></span></li></ul>'); } }, 100); // check every 100ms