MediaWiki:Minerva.js: Difference between revisions

Add links on mobile sidebar (hopefully)
Tinkering, not a real solution
Tags: Mobile edit Mobile web edit Advanced mobile edit
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* All JavaScript here will be loaded for users of the MinervaNeue skin */
/* All JavaScript here will be loaded for users of the MinervaNeue skin */
/* 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 */


mw.loader.using('mobile.site.styles')
var timer = setInterval(function() {
 
  if ($('.menu ul:first').length) {
  /* Add to MediaWiki:Mobile.js for custom Mobile Menu links
      console.log("Mobile menu exists");
  for MW-1.34.2 with MobileFrontend and MinervaNeue
      clearInterval(timer);
  Just replace span text and href to add links */
      $('.menu ul:first').after(
 
            '<ul class="level1"> \
  var timer = setInterval(function() {
                  <li> \
      if ($('.menu ul:first').length) {
                  <a href="#" \
          console.log("Mobile menu exists");
                        class="icon-settings icon icon-text"> \
          clearInterval(timer);
                  <span>Creative</span> \
          $('.menu ul:first').after(
                  </a> \
                '<ul class="level1"> \
                  </li> \
                      <li> \
                  <ul class ="level2"> \
                      <a href="#" \
                      <li> \
                            class="mw-ui-icon mw-ui-icon-before mw-ui-icon-minerva-watchlist"> \
                      <a href="/wiki/List_of_Cities_and_Islands" \
                      <span>Creative</span> \
                            class="mw-ui-icon mw-ui-icon-before"> \
                      </a> \
                      <span>List of cities and islands</span> \
                      </li> \
                      </a> \
                      <ul class ="level2"> \
                      </li> \
                          <li> \
                      <li> \
                          <a href="/wiki/List_of_Cities_and_Islands" \
                      <a href="/wiki/List_of_Notable_Players" \
                                class="mw-ui-icon mw-ui-icon-before"> \
                            class="mw-ui-icon mw-ui-icon-before"> \
                          <span>List of cities and islands</span> \
                      <span>List of notable players</span> \
                          </a> \
                      </a> \
                          </li> \
                      </li> \
                          <li> \
                  </ul> \
                          <a href="/wiki/List_of_Notable_Players" \
            </ul> \
                                class="mw-ui-icon mw-ui-icon-before"> \
            <ul>'
                          <span>List of notable players</span> \
        );
                          </a> \
        $(".menu").find(".level2").hide(); // hide level2 until level1 is clicked
                          </li> \
        $(".level1").click(function(event){  
                      </ul> \
            $(this).find(".level2").slideToggle(500);
                </ul> \
        }); // if level1 is clicked, dropdown level2
                <ul> \
  }
                      <li> \
}, 100); // check every 100ms
                      <a href="/wiki/Second_Link" \
                            class="mw-ui-icon mw-ui-icon-before mw-ui-icon-minerva-watchlist"> \
                      <span>Second Link</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