MediaWiki:Mobile.js: Difference between revisions

From Kirby Speedrunning Wiki
Jump to navigationJump to search
(Created page with "→‎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: /* Taken 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> \...")
(No difference)

Revision as of 02:19, 28 June 2023

/* 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 */
/* Taken 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> \
                      <li> \
                      <a href="Special:MyLanguage/Main_Page|mw-allgames" \
                            class="mw-ui-icon mw-ui-icon-before mw-ui-icon-minerva-watchlist"> \
                      <span>All Games</span> \
                      </a> \
                      </li> \
                 </ul>'
            );
            $(".menu").find(".level2").hide(); // hide level2 until level1 is clicked
            $(".level1").click(function(event){ 
                 $(this).find(".level2").slideToggle(500);
            }); // if level1 is clicked, dropdown level2
       }
  }, 100); // check every 100ms