Difference between revisions of "MediaWiki:Mobile.js"

From RECESSIM, A Reverse Engineering Community
Jump to navigation Jump to search
Tag: Replaced
Line 1: Line 1:
/* Any JavaScript here will be loaded for users using the mobile site  
+
/* Any JavaScript here will be loaded for users using the mobile site */
 
 
var timer = setInterval(function() {
 
    if ($('.menu ul:first').length) {
 
        console.log("mobile menu exists");
 
        clearInterval(timer);
 
        $('.menu ul:first').after(
 
            '<ul class="level1"> \
 
                    <li> \
 
                    <a href="#" \
 
                    class="mw-ui-icon mw-ui-icon-before mw-ui-icon-mf-expand mw-ui-icon-small"> \
 
                    <span>Dropdown Links</span> \
 
                    </a> \
 
                    </li> \
 
                    <ul class="level2"> \
 
                        <li> \
 
                        <a href="/wiki/Link_1" \
 
                        class="mw-ui-icon mw-ui-icon-before mw-ui-icon-minerva-download"> \
 
                        <span>Link 1</span> \
 
                        </a> \
 
                        </li> \
 
                        <li> \
 
                        <a href="/wiki/Link_2" \
 
                        class="mw-ui-icon mw-ui-icon-before mw-ui-icon-minerva-mapPin"> \
 
                        <span>Link 2</span> \
 
                        </a> \
 
                        </li> \
 
                        <li> \
 
                        <a href="/wiki/Link_3" \
 
                        class="mw-ui-icon mw-ui-icon-before mw-ui-icon-wikimedia-bellOutline-base20"> \
 
                        <span>Link 3</span> \
 
                        </a> \
 
                        </li> \
 
                    </ul> \
 
              </ul>\
 
              <ul> \
 
                    <li> \
 
                    <a href="/wiki/Second_Link" \
 
                    class="mw-ui-icon mw-ui-icon-before mw-ui-icon-wikimedia-star-base20"> \
 
                    <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
 
 
 
*/
 

Revision as of 02:47, 17 October 2020

/* Any JavaScript here will be loaded for users using the mobile site */