Änderungen

Wechseln zu: Navigation, Suche

MediaWiki:Common.js

845 Byte hinzugefügt, 06:51, 14. Mai 2017
K
keine Bearbeitungszusammenfassung
/* end rotaing banner */
 
/* 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-Werbung') !=null) {
window.onscroll = function() {
var header_height = document.getElementById("p-Werbung").scrollHeight;
if (window.scrollY + 330 > header_height){
document.getElementById("p-Werbung").style.position="fixed";
document.getElementById("p-Werbung").style.top="0px";
}
else{
document.getElementById("p-Werbung").style.position="static";
}
}
}
2.944
Bearbeitungen

Navigationsmenü