Difference between revisions of "MediaWiki:Common.js"

From MunichBeerGardens.com
Jump to: navigation, search
m
m
Line 10: Line 10:
  
  
/* emulate sticky CSS */
+
/* emulate sticky CSS
 
if (document.getElementById('p-Matched_content') !=null) {
 
if (document.getElementById('p-Matched_content') !=null) {
 
window.onscroll = function() {   
 
window.onscroll = function() {   
Line 22: Line 22:
 
}
 
}
 
}
 
}
};
+
}
  
 
if (document.getElementById('p-advertisement') !=null) {
 
if (document.getElementById('p-advertisement') !=null) {
Line 36: Line 36:
 
}
 
}
 
}
 
}
 
+
*/
  
  

Revision as of 09:27, 23 June 2023

/* Any JavaScript here will be loaded for all users on every page load. */

//setTimeout("alert('test')",10000);

//document.getElementsByTagName('body')[0].style.margin = '110px';

var RecaptchaOptions = {
    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";
}
}
}
*/


/* GDPR */

if (window.addEventListener)
{
window.addEventListener('load', run_onload, false);
}

function run_onload(){
GDPR_state_value = "undecided";
if (GDPR_state_value == "undecided"){
undecided();
}

}

function undecided(){
alert('');
}