注意

https://wiki.hktrpg.com/ 新維基站開放中

歡迎測試使用

「MediaWiki:Mobile.js」:修訂間的差異

出自HKTRPG - TRPG百科
跳至導覽 跳至搜尋
(已建立頁面,內容為 "→‎此處的JavaScript將載入於使用手機版的使用者:​ //Removes the current mfTempOpenSection function so we don't get console errors on heading clicks $…"
 
無編輯摘要
行 2: 行 2:
//Removes the current mfTempOpenSection function so we don't get console errors on heading clicks
//Removes the current mfTempOpenSection function so we don't get console errors on heading clicks


$('.section-heading').prop('onclick',null);
//$('.section-heading').prop('onclick',null);


//Add a new function that changes the display parameter of the collapsible div associated to the clicked header
//Add a new function that changes the display parameter of the collapsible div associated to the clicked header

於 2019年6月8日 (六) 04:32 的修訂

/* 此處的JavaScript將載入於使用手機版的使用者 */
//Removes the current mfTempOpenSection function so we don't get console errors on heading clicks

//$('.section-heading').prop('onclick',null);

//Add a new function that changes the display parameter of the collapsible div associated to the clicked header

$('.section-heading').click(function($event){

    var source = $event.target;

    var sectionHeadings = $('.section-heading');    

    sectionHeadings.toArray().forEach(function(section){

       var span = section.getElementsByTagName('span')[0];

       if (span.id == source.id){

         var collapseDiv = section.nextSibling;

         collapseDiv.style.display = collapseDiv.style.display == "block" ? "none" : "block";

         return;

       }

    });

});