MediaWiki:Timeless.js: Difference between revisions

From Destinypedia, the Destiny wiki

(Created page with "→‎Any JavaScript here will be loaded for users using the Timeless skin: →‎Mobile menu fix: $(function() { function menuFix( $element ) { if ( $(window).width() >= 85...")
 
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for users using the Timeless skin */
/* Any JavaScript here will be loaded for users using 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 */
/* Mobile menu fix */

Revision as of 12:43, November 1, 2020

/* Any JavaScript here will be loaded for users using 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') );
	});
});