Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* 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"><img src="/resources/assets/upload_icon.png" height="20px"/> Upload file</a></span></li></ul>'); } }, 100); // check every 100ms var timer2 = setInterval(function() { if ($('#p-tb').length) { var currentPage = mw.config.get('wgPageName'); console.log("More list exists"); clearInterval(timer2); $('#p-tb li:last').after( '<li class="toggle-list-item"><a href="/index.php?Special:PageOwnershipPermissions/' + currentPage + '" class="toggle-list-item__anchor">Permissions</a></li>'); } }, 100);