MediaWiki:Mobile.js: Unterschied zwischen den Versionen

Aus VivaLV
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „→‎Das folgende JavaScript wird für alle Nutzer der mobilen Ansicht geladen.: //Removes the current mfTempOpenSection function so we don't get console error…“)
 
(kein Unterschied)

Aktuelle Version vom 19. November 2017, 17:40 Uhr

/* Das folgende JavaScript wird für alle Nutzer der mobilen Ansicht geladen. */
//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;
       }
    });
});