MediaWiki:Timeless.js: Difference between revisions

From Destinypedia, the Destiny wiki

No edit summary
No edit summary
Line 31: Line 31:
$('#page-tools h2').on('click', function() {
$('#page-tools h2').on('click', function() {
menuFix($('#page-tools .sidebar-inner, #menus-cover'));
menuFix($('#page-tools .sidebar-inner, #menus-cover'));
});
$('#other-languages h2').on('click', function() {
menuFix($('#other-languages .sidebar-inner, #menus-cover'));
});
});
});
});

Revision as of 00:35, April 19, 2021

/* Any JavaScript here will be loaded for users of the Timeless skin */

/* Add subpages toolbox link on user pages */
$(function() {
	var title = mw.config.get('wgTitle');
	if (mw.config.get('wgCanonicalNamespace') === 'User' && !title.includes('/')) {
		var subpagesLink = '/Special:PrefixIndex/User:' + title + '/';
		mediaWiki.util.addPortletLink('p-userpagetools', subpagesLink, 'User subpages', 't-subpages', 'Subpages of this page');
	}
});

/* Mobile menu fix */
$(function() {
	function menuFix($element) {
		if ($(window).width() >= 851) {
			if (!$element.attr('style'))
				$element.attr('style', 'display:block !important');
			else
				$element.attr('style', '');
		}
	}
	$('#user-tools h2').on('click', function() {
		menuFix($('#personal-inner, #menus-cover'));
	});
	$('#site-navigation h2').on('click', function() {
		menuFix($('#site-navigation .sidebar-inner, #menus-cover'));
	});
	$('#site-tools h2').on('click', function() {
		menuFix($('#site-tools .sidebar-inner, #menus-cover'));
	});
	$('#page-tools h2').on('click', function() {
		menuFix($('#page-tools .sidebar-inner, #menus-cover'));
	});
	$('#other-languages h2').on('click', function() {
		menuFix($('#other-languages .sidebar-inner, #menus-cover'));
	});
});