MediaWiki:Gadget-GlobalScript.js: Difference between revisions

From Pikipedia, the Pikmin wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 19: Line 19:
return;
return;
videos.each(function(ii, video) {
videos.each(function(ii, video) {
$(video).parent().css({'width': '100%', 'max-width': 'calc(100% - 30px)', 'margin': 'auto'});
$(video).parent().css({'width': '100%', 'min-width': '125px', 'max-width': 'calc(100% - 30px)', 'margin': 'auto'});
});
});
var height = 0;
var height = 0;
Line 28: Line 28:
videos.each(function(ii, video) {
videos.each(function(ii, video) {
var maxHeight = height - 30;
var maxHeight = height - 30;
$(video).css({'width': '100%', 'max-height': maxHeight});
$(video).css('max-height', maxHeight);
$(video).parent().parent().css({'height': height, 'display': 'flex'});
$(video).parent().parent().css({'height': height, 'display': 'flex'});
});
});

Revision as of 20:13, February 21, 2023

/* Any JavaScript here will be loaded for all skins on both desktop and mobile */

/* Add autocollapse support to mw-collapsible */
function mwCollapsibleSetup($collapsibleContent) {
	var $element, autoCollapseThreshold = 2;
	$.each($collapsibleContent, function(index, element) {
		$element = $(element);
		if ($collapsibleContent.length >= autoCollapseThreshold && $element.hasClass('autocollapse'))
			$element.data('mw-collapsible').collapse();
	});
}
mw.hook('wikipage.collapsibleContent').add(mwCollapsibleSetup);

/* Gallery videos */
$(function() {
	$('.gallery').each(function(i, gallery) {
		var videos = $(gallery).find('.gallerybox video');
		if (!videos.length)
			return;
		videos.each(function(ii, video) {
			$(video).parent().css({'width': '100%', 'min-width': '125px', 'max-width': 'calc(100% - 30px)', 'margin': 'auto'});
		});
		var height = 0;
		$(gallery).find('.gallerybox .thumb').each(function(ii, thumb) {
			if ($(thumb).innerHeight() > height)
				height = $(thumb).innerHeight();
		});
		videos.each(function(ii, video) {
			var maxHeight = height - 30;
			$(video).css('max-height', maxHeight);
			$(video).parent().parent().css({'height': height, 'display': 'flex'});
		});
	});
});

/* Pikan */
$(function() {
	if (mw.config.get('wgAction') === 'edit' || mw.config.get('wgAction') === 'submit')
		mw.loader.getScript('/MediaWiki:Pikan-core.js?action=raw&ctype=text/javascript').then(
			function() {
				mw.loader.load('/MediaWiki:Pikan-pikipedia.js?action=raw&ctype=text/javascript');
			}
		);
});