MediaWiki:Common.js: Difference between revisions
From the Kingdom Hearts Wiki, the Kingdom Hearts encyclopedia
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 59: | Line 59: | ||
}); | }); | ||
/* Clean up file extension for new uploads (if | /* Clean up the file extension for new uploads */ | ||
$(' | $(function() { | ||
if (mw.config.get('wgCanonicalSpecialPageName') === 'Upload' && !$('#wpForReUpload').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); | |||
} | |||
}); | |||
}); | }); | ||
Revision as of 01:30, 18 May 2020
/* Any JavaScript here will be loaded for all users on every page load. */
/* Alternating wiki logo */
$(function() {
var logos = ['/images/b/bc/Wiki.png', '/images/9/97/Wiki_3.png', '/images/d/d7/Wiki_2.png'];
$('#p-logo a').css('background-image', 'url(' + logos[Math.floor(Math.random() * logos.length)] + ')');
});
/* Hide page previews when portals are used */
$(function() {
if (document.getElementsByClassName('nav')[0] && document.getElementsByClassName('dropdown')[0])
$('head').append('<style type="text/css">.mwe-popups { display: none !important; }</style>');
});
/* Fix media negative margin bug for wide galleries */
$('.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);
}
});
/* Username inserts for the USERNAME template */
$(function() {
if (typeof(disableUsernameReplace) != 'undefined' && disableUsernameReplace || mw.config.get('wgUserName') === null) return;
$('span.insertusername').each(function() {
$(this).text(mw.config.get('wgUserName'));
});
});
/* 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() {
var title = mw.config.get('wgTitle');
if (mw.config.get('wgCanonicalNamespace') === 'User' && !title.includes('/')) {
var subpagesLink = '/Special:PrefixIndex/User:' + title + '/';
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)
$('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);
}
});
});
/* Fix game icons */
$(function() {
if (document.getElementById('title-linktabs')) {
if (document.getElementsByClassName('mw-redirectedfrom')[0])
$('#title-linktabs').css('top', '-36px');
else if (document.getElementsByClassName('usermessage')[0])
$('#title-linktabs').css('top', '-48px');
}
});
/* Shrinking talk bubble sprites */
$(function() {
if (document.readyState != "complete") {
setTimeout(arguments.callee, 100);
return;
}
$("table.talkbubble").each(function() {
$(this).find("td").first().width(90).css("text-align", "center").find("img").each(function () {
if ($(this).width() > 90) $(this).css("height", "auto").width(90);
});
});
});
/* Code for Template:Suite3 - Author: Soxra */
$(function() {
$(".morphMaster").each(function() {
var $master = $(this);
var $tabs = $master.find(".morphTabBox");
var $container = $master.find(".morphTabContainer");
$tabs.find(".morphLink").click(function() {
var id = $(this).attr("id");
id = id.substr(0, id.length - 4);
$container.find(".morphContent").hide();
$container.find("#" + id + "Content").show();
});
});
});