MediaWiki:Common.js: Difference between revisions

From Pikipedia, the Pikmin wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
if ($(this).parent().css('margin-top') < '15px')
if ($(this).parent().css('margin-top') < '15px')
$(this).parent().css('margin', '15px auto');
$(this).parent().css('margin', '15px auto');
});
/* 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');
});
}
});
});



Revision as of 12:16, June 17, 2019

/* Any JavaScript here will be loaded for all users on every page load. */

/* Fix media negative margin bug for wide galleries */
$('.gallerybox .mediaContainer').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() {
	if (mw.config.get('wgTitle') === 'Main Page') {
		$('div[id^="mf-"]').each(function(i, obj) {
			$(this).removeAttr('title');
		});
	}
});

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