Difference between revisions of "MediaWiki:Mobile.js"
Jump to navigation
Jump to search
Tags: Mobile web edit Mobile edit |
Tags: Mobile web edit Mobile edit |
||
Line 22: | Line 22: | ||
</a> \ | </a> \ | ||
</li> \ | </li> \ | ||
− | |||
</ul> \ | </ul> \ | ||
</ul> \ | </ul> \ |
Revision as of 10:27, 27 September 2020
/* 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 */
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-minerva-watchlist"> \
<span>Dropdown Links</span> \
</a> \
</li> \
<ul class ="level2"> \
<li> \
<a href="/wiki/Alnwick_Moors" \
class="mw-ui-icon mw-ui-icon-before"> \
<span>Alnwick Moors</span> \
</a> \
</li> \
</ul> \
</ul> \
<ul> \
<li> \
<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
/* Todo: Customize link icons, currently they all use watchlist.svg */