MediaWiki:Mobile.js: Difference between revisions
Jump to navigation
Jump to search
(Created page with "→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 $('....") |
(No difference)
|
Latest revision as of 17:43, 19 November 2017
/* 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;
}
});
});