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

移除 475 位元組 、​ 2019年6月8日 (六) 04:56
無編輯摘要
無編輯摘要
無編輯摘要
 
行 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
$('.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;
      }
    });
});
261

次編輯