MediaWiki:Common.js: Difference between revisions

From Pikipedia, the Pikmin wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(13 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');
});
 
/* Default Special:ReplaceText to not announce edits */
$(function() {
if (mw.config.get('wgCanonicalSpecialPageName') === 'ReplaceText')
$('input[id="doAnnounce"]').prop('checked', false);
});
 
/* Default Special:UserMerge to user deletion */
$(function() {
if (mw.config.get('wgCanonicalSpecialPageName') === 'UserMerge') {
$('input[name="wpnewuser"]').val('Anonymous');
$('input[name="wpdelete"]').prop('checked', true);
}
});
 
/* Remove mobile title tags on desktop main page */
$(function() {
if (mw.config.get('wgTitle') === 'Main Page') {
$('div[id^="mf-"]').each(function(i, obj) {
$(this).removeAttr('title');
});
}
});
 
/* Add subpages toolbox link on user pages */
$(function() {
$(function() {
var title = mw.config.get('wgTitle');
if (mw.config.get('wgCanonicalNamespace') === 'User' && mw.config.get('skin') !== 'timeless') {
if (mw.config.get('wgCanonicalNamespace') === 'User' && !title.includes('/')) {
var subpagesLink = '/Special:PrefixIndex/User:' + mw.config.get('wgTitle').split('/')[0] + '/';
var subpagesLink = '/Special:PrefixIndex/User:' + title + '/';
mw.util.addPortletLink('p-tb', subpagesLink, 'User subpages', 't-subpages', 'Subpages for this user');
mediaWiki.util.addPortletLink('p-tb', subpagesLink, 'User subpages', 't-subpages', 'Subpages of this page');
}
}
});
/* Clean up the file extension for new uploads */
$(function() {
if (mw.config.get('wgCanonicalSpecialPageName') === 'Upload' && !$('#wpForReUpload').length && !$('.warning').length)
$('input[name=wpUpload]').click(function() {
var file = $('#wpDestFile').val();
if (file.includes('.')) {
var fileName = file.substr(0, file.lastIndexOf('.'));
var fileExt = file.split('.').pop().toLowerCase();
if (fileExt == 'jpeg') fileExt = 'jpg';
$('#wpDestFile').val(fileName + '.' + fileExt);
}
});
});
/* Move game icons into #content for more consistent positioning */
$(function() { $('#game-icons').css('margin-top', '2px').insertBefore($('#firstHeading')) });
/* Upload page script */
$(function() {
  if (mw.config.get('wgCanonicalSpecialPageName') === 'Upload')
    mw.loader.load('/index.php?title=MediaWiki:PikipediaUpload.js' + '&action=raw&ctype=text/javascript');
});
/* 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');
    });
});
});

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');
	}
});