[dismiss]
Site Notice |
---|
Remember to pay a visit to our Discord server and chat with our community! See here for more info. Be sure to check out the KHUX Wiki for the latest on Kingdom Hearts Union χ and Kingdom Hearts Dark Road! Go and pitch in! The KHWiki contains spoilers for all Kingdom Hearts games. Read at your own risk. Please remember not to add information about unreleased games from trailers. |
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 34: | Line 34: | ||
var doubleBracket = '{' + '{'; | var doubleBracket = '{' + '{'; | ||
uploadDescription.value = doubleBracket + 'aboutfile\n|description=\n|purpose=\n|game=\n|source=\n}}'; | uploadDescription.value = doubleBracket + 'aboutfile\n|description=\n|purpose=\n|game=\n|source=\n}}'; | ||
} | } | ||
}); | }); |
Revision as of 08:35, 14 March 2019
/* 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)] + ')');
});
/* Fix game icons when new user message */
$(function() {
if (document.getElementsByClassName('usermessage')[0] && document.getElementById('title-linktabs'))
$('#title-linktabs').css('top', '-48px');
});
/* 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>');
}
});
/* 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'));
});
});
/* Automatically add aboutfile template to file upload description */
$(function() {
if (mw.config.get('wgCanonicalSpecialPageName') === 'Upload' && !document.getElementById('wpForReUpload') && !document.getElementsByClassName('mw-destfile-warning')[0] && !document.getElementsByClassName('error')[0]) {
uploadDescription = document.getElementById('wpUploadDescription');
var doubleBracket = '{' + '{';
uploadDescription.value = doubleBracket + 'aboutfile\n|description=\n|purpose=\n|game=\n|source=\n}}';
}
});
/* 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();
});
});
});