MediaWiki:Gadget-MobileScript.js: Difference between revisions

m
no edit summary
mNo edit summary
mNo edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for users of the mobile site */
/* Any JavaScript here will be loaded for users of the mobile site */


/* Expand section when only one */
/* Expand single talk section */
$(function() {
$(function() {
setTimeout(function() {
setTimeout(function() {
if ($('.collapsible-heading').length === 1)
if ($('.ns-talk .collapsible-heading').length === 1)
$('.collapsible-heading:not(.navbox-heading):not(.open-block)').click();
$('.collapsible-heading:not(.open-block)').click();
}, 100);
}, 100);
});
});