MediaWiki:Timeless.js

From Destinypedia, the Destiny wiki

Revision as of 00:50, April 12, 2021 by Porplemontage (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* 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 */
$(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'));
	});
});