Changes

Jump to: navigation, search

MediaWiki:Common.js

876 bytes removed, 10:58, 23 June 2023
m
no edit summary
theme : 'white'
};
 
 
/* emulate sticky CSS
if (document.getElementById('p-Matched_content') !=null) {
window.onscroll = function() {
var header_height = document.getElementById("p-Matched_content").scrollHeight;
if (window.scrollY + 330 > header_height){
document.getElementById("p-Matched_content").style.position="fixed";
document.getElementById("p-Matched_content").style.top="0px";
}
else{
document.getElementById("p-Matched_content").style.position="static";
}
}
}
 
if (document.getElementById('p-advertisement') !=null) {
window.onscroll = function() {
var header_height = document.getElementById("p-advertisement").scrollHeight;
if (window.scrollY + 330 > header_height){
document.getElementById("p-advertisement").style.position="fixed";
document.getElementById("p-advertisement").style.top="0px";
}
else{
document.getElementById("p-advertisement").style.position="static";
}
}
}
*/

Navigation menu