1,256
次編輯
無編輯摘要 標籤:已被回退 |
無編輯摘要 標籤:已被回退 流動版編輯 流動版網頁編輯 進階流動版編輯 |
||
第1行: | 第1行: | ||
/* Add to MediaWiki:Mobile.js for custom Mobile Menu links | |||
for MW-1.34.2 with MobileFrontend and MinervaNeue | for MW-1.34.2 with MobileFrontend and MinervaNeue | ||
Just replace span text and href to add links */ | Just replace span text and href to add links */ | ||
alert("Javascript is working!"); | |||
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="https://www.veikkos-archiv.com/index.php?title=Ortsverzeichnis_mit_historischen_Informationen" \ | |||
class="mw-ui-icon mw-ui-icon-before mw-ui-icon-mf-expand mw-ui-icon-small"> \ | |||
<span>Ortsverzeichnis</span> \ | |||
</a> \ | |||
</li> \ | |||
<ul class="level2"> \ | |||
<li> \ | |||
<a href="https://www.veikkos-archiv.com/index.php?title=Archiv" \ | |||
class="mw-ui-icon mw-ui-icon-before mw-ui-icon-minerva-download"> \ | |||
<span>Archiv</span> \ | |||
</a> \ | |||
</li> \ | |||
<li> \ | |||
<a href="https://www.veikkos-archiv.com/index.php?title=Archiv" \ | |||
class="mw-ui-icon mw-ui-icon-before mw-ui-icon-minerva-mapPin"> \ | |||
<span>Archiv</span> \ | |||
</a> \ | |||
</li> \ | |||
</ul> \ | |||
</ul>\ | |||
<ul> \ | |||
<li> \ | |||
<a href="https://www.veikkos-archiv.com/index.php?title=Zentralkatalog" \ | |||
class="mw-ui-icon mw-ui-icon-before mw-ui-icon-wikimedia-star-base20"> \ | |||
<span>Zentralkatalog</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 | |||