MediaWiki:Common.js: Difference between revisions

From Pikipedia, the Pikmin wiki
Jump to navigation Jump to search
No edit summary
No edit summary
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 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');
});


/* Syntax highlighter timeout */
/* Syntax highlighter timeout */

Revision as of 19:09, May 7, 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');
});

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