MediaWiki:Common.js: Difference between revisions

506 bytes added ,  15:07, 26 October 2023
no edit summary
No edit summary
No edit summary
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
$( function(){
$( function(){
if (window.matchMedia("(max-width: 768px)").matches) {
if( mw.config.get("skin") !== "minerva" ){
const currWikiUrl = new URL(window.location.href);
currWikiUrl.searchParams.set('mobileaction', 'toggle_view_mobile');
window.location.replace(currWikiUrl);
}
} else {
if(  mw.config.get("skin") !== "vector" ){
const currWikiUrl = new URL(window.location.href);
currWikiUrl.searchParams.set('mobileaction', 'toggle_view_desktop');
window.location.replace(currWikiUrl);
}
}
if( mw.config.get('wgIsMainPage') ){
if( mw.config.get('wgIsMainPage') ){
$('#firstHeading').remove();
$('#firstHeading').remove();