MediaWiki:Timeless.js

From SmashWiki, the Super Smash Bros. wiki
Revision as of 12:51, May 26, 2021 by Porplemontage (talk | contribs)
Jump to navigationJump to search

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 */

/* 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() {
	if (mw.config.get('wgMFMode')) {
		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'));
		});
	}
});