MediaWiki:Timeless.js: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for users of the Timeless skin */
/* Any JavaScript here will be loaded for users of the Timeless skin */
/* Collapse boxes on smaller devices */
function mwMobileCollapse($collapsibleContent) {
if ($(window).width() < 720)
$.each($collapsibleContent, function (index, element) {
$(element).data('mw-collapsible').collapse();
});
}
mw.hook('wikipage.collapsibleContent').add(mwMobileCollapse);


/* Add subpages toolbox link on user pages */
/* Add subpages toolbox link on user pages */