View source for MediaWiki:Mobile.js
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
/* All JavaScript here will be loaded for users of the mobile site */
$( function(){
if (window.matchMedia("(max-width: 768px)").matches) {
if( mw.config.get("skin") !== "minerva" ){
const currWikiUrl = new URL(window.location.href);
currWikiUrl.searchParams.set('useskin', 'minerva');
window.location.replace(currWikiUrl);
}
} else {
if( mw.config.get("skin") !== "vector" ){
const currWikiUrl = new URL(window.location.href);
currWikiUrl.searchParams.set('useskin', 'vector');
window.location.replace(currWikiUrl);
}
}
var countPoem2 = $(".Poem2-Ekatra");
000
1:0
Return to MediaWiki:Mobile.js.