MediaWiki:Timeless.js: Difference between revisions
From Destinypedia, the Destiny wiki
No edit summary |
No edit summary |
||
Line 12: | Line 12: | ||
/* Mobile menu fix */ | /* Mobile menu fix */ | ||
$(function() { | $(function() { | ||
function menuFix($element) { | 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')); | |||
}); | |||
} | } | ||
}); | }); |
Revision as of 11:49, May 26, 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() {
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'));
});
}
});