MediaWiki:Mobile.js: Difference between revisions

From APL Wiki
Jump to navigation Jump to search
(Created page with "→‎Any JavaScript here will be loaded for users using the mobile site: if ($(".LeadingAndTrailingCells").length) { mw.loader.getScript('/w/index.php?title=MediaWiki:D3.v5.m...")
Tags: Mobile edit Mobile web edit
 
No edit summary
Tags: Mobile edit Mobile web edit
 
Line 8: Line 8:
if ($('[title="File:APLcart"]').length) {
if ($('[title="File:APLcart"]').length) {
$('[title="File:APLcart"]').replaceWith('<iframe src="https://aplcart.info?w" style="height:38vh;width:calc(100% - 4px)">');
$('[title="File:APLcart"]').replaceWith('<iframe src="https://aplcart.info?w" style="height:38vh;width:calc(100% - 4px)">');
$('.thumbinner').css('width','38vw');
$('.thumbinner').css('width','90vw');
}
}
if ($('[title="File:Ngn/apl"]').length) {
if ($('[title="File:Ngn/apl"]').length) {

Latest revision as of 15:46, 9 January 2020

/* Any JavaScript here will be loaded for users using the mobile site */
if ($(".LeadingAndTrailingCells").length) {
	mw.loader.getScript('/w/index.php?title=MediaWiki:D3.v5.min.js&action=raw&ctype=text/javascript')
		.then(function() {
			mw.loader.load('/w/index.php?title=MediaWiki:LeadingAndTrailingCells.js&action=raw&ctype=text/javascript');
		});
}
if ($('[title="File:APLcart"]').length) {
	$('[title="File:APLcart"]').replaceWith('<iframe src="https://aplcart.info?w" style="height:38vh;width:calc(100% - 4px)">');
	$('.thumbinner').css('width','90vw');
}
if ($('[title="File:Ngn/apl"]').length) {
	$('[title="File:Ngn/apl"]').replaceWith('<iframe src="https://n9n.gitlab.io/apl/web/" style="height:350px;width:calc(100% - 4px)">');
	$('.thumbinner').css('width','');
}