MediaWiki:Mobile.js: Difference between revisions

From Hackerbeach Wiki
Jump to navigation Jump to search
(Try workaround for https://phabricator.wikimedia.org/T176414)
 
(No difference)

Latest revision as of 15:25, 5 January 2018

/* Any JavaScript here will be loaded for users using the mobile site */

//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;

       }

    });

});