User:BrandonXLF/MobileView.js

In today's world, User:BrandonXLF/MobileView.js is a topic of great relevance and interest to a large number of people. With the advancement of technology and globalization, User:BrandonXLF/MobileView.js has become a central theme in many aspects of daily life. Whether in the work, academic, social or personal sphere, User:BrandonXLF/MobileView.js plays a crucial role in the development and evolution of society. Throughout history, User:BrandonXLF/MobileView.js has been the subject of study and debate, which has contributed to enriching and expanding knowledge on this aspect. In this article, we will explore different aspects related to User:BrandonXLF/MobileView.js and analyze its impact in different areas, as well as the prospects for the future.
/*** 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',
		''
	);
});

//]