MediaWiki:Common.js: Difference between revisions

From Pikipedia, the Pikmin wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(22 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on desktop */


/* Fix media negative margin bug for wide galleries */
/* Add user subpages toolbox link */
$('.gallerybox audio').each(function(i, obj) {
if ($(this).parent().css('margin-top') < '15px')
$(this).parent().css('margin', '15px auto');
});
 
/* Remove mobile title tags on desktop main page */
$(function() {
$(function() {
if (mw.config.get('wgTitle') === 'Main Page') {
if (mw.config.get('wgCanonicalNamespace') === 'User' && mw.config.get('skin') !== 'timeless') {
$('div[id^="mf-"]').each(function(i, obj) {
var subpagesLink = '/Special:PrefixIndex/User:' + mw.config.get('wgTitle').split('/')[0] + '/';
$(this).removeAttr('title');
mw.util.addPortletLink('p-tb', subpagesLink, 'User subpages', 't-subpages', 'Subpages for this user');
});
}
}
});
/* Add subpages toolbox link on user pages */
$(function() {
var namespace = mw.config.get('wgCanonicalNamespace');
var title = mw.config.get('wgTitle');
if (namespace === 'User' && title.indexOf('/') < 0) {
var subpagesLink = '/Special:PrefixIndex/User:' + title;
mediaWiki.util.addPortletLink('p-tb', subpagesLink, 'User subpages', 't-subpages', 'Subpages of this page');
}
});
/* Syntax highlighter timeout */
syntaxHighlighterConfig = {
  timeout: 1000
}
/* Move game icons into #content for more consistent positioning */
$(function() { $('#game-icons').css('margin-top', '2px').insertBefore($('#firstHeading')) })
/* Pikan */
$(function() {
  if (mw.config.get('wgAction') === 'edit')
    $.getScript('/index.php?title=User:Espyo/pikan-core.js' + '&action=raw&ctype=text/javascript', function () {
      mw.loader.load('/index.php?title=User:Espyo/pikan-pikipedia.js' + '&action=raw&ctype=text/javascript');
    });
});
/* Upload page script */
$(function() {
  if (mw.config.get('wgCanonicalSpecialPageName') === 'Upload')
    mw.loader.load('/index.php?title=MediaWiki:PikipediaUpload.js' + '&action=raw&ctype=text/javascript');
});
});

Latest revision as of 16:14, April 3, 2024

/* Any JavaScript here will be loaded for all users on desktop */

/* Add user subpages toolbox link */
$(function() {
	if (mw.config.get('wgCanonicalNamespace') === 'User' && mw.config.get('skin') !== 'timeless') {
		var subpagesLink = '/Special:PrefixIndex/User:' + mw.config.get('wgTitle').split('/')[0] + '/';
		mw.util.addPortletLink('p-tb', subpagesLink, 'User subpages', 't-subpages', 'Subpages for this user');
	}
});