MediaWiki:Mobile.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary Tags: Mobile edit Mobile web edit |
No edit summary Tags: Mobile edit Mobile web edit |
||
| Line 19: | Line 19: | ||
// ######################## | |||
if( | if( | ||
| Line 30: | Line 30: | ||
} | } | ||
// ######################## | |||
if( | |||
window.location.href=="https://www.exagear.wiki/index.php?title=Main_Page(ru)&mobileaction=toggle_view_mobile" | |||
) | |||
{var plusLinks = document.querySelectorAll('.pre-content'); | |||
var firstLink = plusLinks[0]; | |||
firstLink.setAttribute('class', 'hidethis'); | |||
} | |||
// ######################## | |||
if( | |||
window.location.href=="https://www.exagear.wiki/index.php?title=Main_Page&mobileaction=toggle_view_mobile" | |||
) | |||
{ | |||
var plusLinks = document.querySelectorAll('.pre-content'); | |||
var firstLink = plusLinks[0]; | |||
firstLink.setAttribute('class', 'hidethis'); | |||
} | |||
// ######################## | |||
Revision as of 12:53, 19 October 2022
/* Any JavaScript here will be loaded for all users on every page load. */
if ( mw.config.get( 'wgIsMainPage' )) {
var language = navigator.language || navigator.browserLanguage;
// alert(language);
if (language.indexOf('ru') > -1) {
document.location.href = 'https://www.exagear.wiki/index.php?title=Main_Page(ru)';
} else {
document.location.href = 'https://www.exagear.wiki/index.php?title=Main_Page';
}
}
// ########################
if(
window.location.href=="https://www.exagear.wiki/index.php?title=Main_Page"
)
{
var plusLinks = document.querySelectorAll('.pre-content');
var firstLink = plusLinks[0];
firstLink.setAttribute('class', 'hidethis');
}
// ########################
if(
window.location.href=="https://www.exagear.wiki/index.php?title=Main_Page(ru)&mobileaction=toggle_view_mobile"
)
{var plusLinks = document.querySelectorAll('.pre-content');
var firstLink = plusLinks[0];
firstLink.setAttribute('class', 'hidethis');
}
// ########################
if(
window.location.href=="https://www.exagear.wiki/index.php?title=Main_Page&mobileaction=toggle_view_mobile"
)
{
var plusLinks = document.querySelectorAll('.pre-content');
var firstLink = plusLinks[0];
firstLink.setAttribute('class', 'hidethis');
}
// ########################
if(
window.location.href=="https://www.exagear.wiki/index.php?title=Main_Page(ru)"
)
{var plusLinks = document.querySelectorAll('.pre-content');
var firstLink = plusLinks[0];
firstLink.setAttribute('class', 'hidethis');
}