MediaWiki:Minerva.js: Difference between revisions
Jump to navigation
Jump to search
Created page with "→All JavaScript here will be loaded for users of the MinervaNeue skin: mw.loader.using('mobile.site.styles')" Tags: Mobile edit Mobile web edit Advanced mobile edit |
Tinkering, not a real solution Tags: Mobile edit Mobile web edit Advanced mobile edit |
||
| (5 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 */ | |||
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="icon-settings icon icon-text"> \ | |||
<span>Creative</span> \ | |||
</a> \ | |||
</li> \ | |||
<ul class ="level2"> \ | |||
<li> \ | |||
<a href="/wiki/List_of_Cities_and_Islands" \ | |||
class="mw-ui-icon mw-ui-icon-before"> \ | |||
<span>List of cities and islands</span> \ | |||
</a> \ | |||
</li> \ | |||
<li> \ | |||
<a href="/wiki/List_of_Notable_Players" \ | |||
class="mw-ui-icon mw-ui-icon-before"> \ | |||
<span>List of notable players</span> \ | |||
</a> \ | |||
</li> \ | |||
</ul> \ | |||
</ul> \ | |||
<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 | |||
Latest revision as of 12:10, 16 March 2025
/* 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 */
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="icon-settings icon icon-text"> \
<span>Creative</span> \
</a> \
</li> \
<ul class ="level2"> \
<li> \
<a href="/wiki/List_of_Cities_and_Islands" \
class="mw-ui-icon mw-ui-icon-before"> \
<span>List of cities and islands</span> \
</a> \
</li> \
<li> \
<a href="/wiki/List_of_Notable_Players" \
class="mw-ui-icon mw-ui-icon-before"> \
<span>List of notable players</span> \
</a> \
</li> \
</ul> \
</ul> \
<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