MediaWiki:Mobile.js

提供:Euro Truck Simulator 2 FanWiki

注意: 保存後、変更を確認するにはブラウザーのキャッシュを消去する必要がある場合があります。

  • Firefox / Safari: Shift を押しながら 再読み込み をクリックするか、Ctrl-F5 または Ctrl-R を押してください (Mac では ⌘-R)
  • Google Chrome: Ctrl-Shift-R を押してください (Mac では ⌘-Shift-R)
  • Internet Explorer / Microsoft Edge: Ctrl を押しながら 最新の情報に更新 をクリックするか、Ctrl-F5 を押してください
  • Opera: Ctrl-F5を押してください
/* ここにある全てのJavaScriptはモバイル版サイトの利用者に影響します */

/* 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>ETS2 Dropdown Menu</span></a>\
   </li>\
   <ul class ="level2">\
    <li><a href="https://gamefanweb.com/ets2/index.php?title=Category:EuroTruckSimulator2%E3%81%AE%E6%A6%82%E8%A6%81" class="mw-ui-icon mw-ui-icon-before"><span>ETS2の概要</span></a></li>\
    <li><a href="https://gamefanweb.com/ets2/index.php?title=Category:EuroTruckSimulator2%E3%81%AE%E5%9F%BA%E6%9C%AC" class="mw-ui-icon mw-ui-icon-before"><span>ETS2の基本</span></a></li>\
    <li><a href="https://gamefanweb.com/ets2/index.php?title=Category:EuroTruckSimulator2%E3%81%AE%E3%83%87%E3%83%BC%E3%82%BF" class="mw-ui-icon mw-ui-icon-before"><span>ETS2のデータ</span></a></li>\
    <li><a href="https://gamefanweb.com/ets2/index.php?title=Category:EuroTruckSimulator2%E3%81%AE%E3%83%9E%E3%83%83%E3%83%97" class="mw-ui-icon mw-ui-icon-before"><span>ETS2のマップ</span></a></li>\
   </ul>\
  </ul>\
  <ul class="level1">\
   <li><a href="#" class="mw-ui-icon mw-ui-icon-before mw-ui-icon-minerva-watchlist"><span>MediaWiki Dropdown Menu</span></a></li>\
   <ul class ="level2">\
    <li><a href="https://gamefanweb.com/ets2/index.php?title=Category:Mediawiki%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6%E3%81%AE%E5%82%99%E5%BF%98%E9%8C%B2" class="mw-ui-icon mw-ui-icon-before"><span>MediaWikiについての備忘録</span></a></li>\
   </ul>\
  </ul>\
  <ul class="level1">\
   <li id="ca-google-translate"><a href="#" class="mw-ui-icon mw-ui-icon-before mw-ui-icon-minerva-watchlist"><span>Translate Dropdown Menu</span></a></li>\
   <ul class ="level2">\
    <li id="ca-google-translate" class="vector-more-collapsible-item mw-list-item"><a href="#" class="mw-ui-icon mw-ui-icon-before"><span>Google Translate</span></a></li>\
   </ul>\
  </ul>'
/*
 <ul>\
  <li>\
   <a href="https://gamefanweb.com/ets2/index.php?title=Category:Mediawiki%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6%E3%81%AE%E5%82%99%E5%BF%98%E9%8C%B2" class="mw-ui-icon mw-ui-icon-before mw-ui-icon-minerva-watchlist"><span>MediaWikiについての備忘録</span></a>\
  </li>\
  <li id="ca-google-translate">\
   <a href="#"><span>Translate</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