|
Tags: Replaced Mobile edit Mobile web edit Advanced mobile edit |
| (10 intermediate revisions by the same user not shown) |
| Line 1: |
Line 1: |
| /* All JavaScript here will be loaded for users of the mobile site */ | | /* All JavaScript here used to be loaded for users of the mobile site */ |
|
| |
|
| /* Below adapted from https://www.mediawiki.org/wiki/Topic:Vqy1kx6q4e0bzvyb */ | | /* moved to [[MediaWiki:Minerva.js]] */ |
| | |
| /* 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/Synthetic_human-like_fakes" \
| |
| class="mw-ui-icon mw-ui-icon-before"> \
| |
| <span>Synthetic human-like fakes</span> \
| |
| </a> \
| |
| </li> \
| |
| <li> \
| |
| <a href="/wiki/Adequate_Porn_Watcher_AI" \
| |
| class="mw-ui-icon mw-ui-icon-before"> \
| |
| <span>Adequate Porn Watcher AI</span> \
| |
| </a> \
| |
| </li> \
| |
| <li> \
| |
| <a href="/wiki/How_to_protect_yourself_and_others_from_covert_modeling" \
| |
| class="mw-ui-icon mw-ui-icon-before"> \
| |
| <span>How to protect yourself and others from covert modeling</span> \
| |
| </a> \
| |
| </li> \
| |
| <li> \
| |
| <a href="/wiki/Biblical_explanation_-_The_books_of_Daniel_and_Revelation" \
| |
| class="mw-ui-icon mw-ui-icon-before"> \
| |
| <span>Biblical explanation - The books of Daniel and Revelation</span> \
| |
| </a> \
| |
| </li> \
| |
| <li> \
| |
| <a href="/wiki/Mediatheque" \
| |
| class="mw-ui-icon mw-ui-icon-before"> \
| |
| <span>Mediatheque</span> \
| |
| </a> \
| |
| </li> \
| |
| <li> \
| |
| <a href="/wiki/Glossary" \
| |
| class="mw-ui-icon mw-ui-icon-before"> \
| |
| <span>Glossary</span> \
| |
| </a> \
| |
| </li> \
| |
| <li> \
| |
| <a href="/wiki/Resources" \
| |
| class="mw-ui-icon mw-ui-icon-before"> \
| |
| <span>Resources</span> \
| |
| </a> \
| |
| </li> \
| |
| <li> \
| |
| <a href="/wiki/Marketing_against_synthetic_filth" \
| |
| class="mw-ui-icon mw-ui-icon-before"> \
| |
| <span>Marketing against synthetic filth</span> \
| |
| </a> \
| |
| </li> \
| |
| <li> \
| |
| <a href="/wiki/SSF:About" \
| |
| class="mw-ui-icon mw-ui-icon-before"> \
| |
| <span>About the SSF! wiki</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
| |