/*** Mobile View ***/

// Adds a link to see the mobile version of a page
// Documentation at ]
// By ]

$(function() {
	mw.util.addPortletLink(
		'p-tb',
		location.href.replace(/useformat=/g, '') + (location.href.includes('?') ? '&' : '?') + 'useformat=mobile',
		'Mobile view',
		'Mobile view',
		'See the page in the mobile version of the page',
		''
	);
});

//]