312
edits
No edit summary |
No edit summary Tags: Reverted Mobile edit Mobile web edit |
||
Line 16: | Line 16: | ||
} | } | ||
} | |||
// HIDING ELEMENTS | |||
// ######################## | |||
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_desktop" | |||
) | |||
{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_desktop" | |||
) | |||
{ | |||
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'); | |||
} | } |