MediaWiki:Gadget-MobileScript.js: Difference between revisions

m
no edit summary
No edit summary
mNo edit summary
(4 intermediate revisions by the same user not shown)
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 single talk section */
$(function() {
setTimeout(function() {
if ($('.ns-talk .collapsible-heading').length === 1)
$('.collapsible-heading:not(.open-block)').click();
}, 100);
});


/* Collapse boxes on smaller devices */
/* Collapse boxes on smaller devices */
Line 15: Line 23:
var optionsLink = '/Special:MobileOptions';
var optionsLink = '/Special:MobileOptions';
var optionsDesc = 'Settings for the mobile site';
var optionsDesc = 'Settings for the mobile site';
mediaWiki.util.addPortletLink('p-tb', optionsLink, 'Mobile options', 't-options', optionsDesc);
mw.util.addPortletLink('p-tb', optionsLink, 'Mobile options', 't-options', optionsDesc);
}
}
});
});