eclipso.ch

German supplemental subscription
Locked
keri
Forum Junkie
Forum Junkie
Posts: 183
Joined: Tue Sep 14, 2010 3:10 pm

eclipso.ch

Post by keri »

Neuer Banner:
Login-Hinweis: Mit aktiviertem Werbeblocker ist das Login nicht möglich! Bitte deaktivieren Sie den AdBlocker und aktualisieren Sie die Seite (F5)!
Scheint mir folgendes script zu sein: https://www.eclipso.ch/plugins/js/adframe.js
MonztA
EasyList Author
EasyList Author
Posts: 8121
Joined: Thu Jul 26, 2007 4:19 pm
Location: Germany

Post by MonztA »

keri
Forum Junkie
Forum Junkie
Posts: 183
Joined: Tue Sep 14, 2010 3:10 pm

Post by keri »

Sieht so aus als wären sie von

Code: Select all

eclipso.ch/plugins/js/adframe.js
auf

Code: Select all

https://www.eclipso.ch/clientlib/adframe.js
umgestiegen.
MonztA
EasyList Author
EasyList Author
Posts: 8121
Joined: Thu Jul 26, 2007 4:19 pm
Location: Germany

Post by MonztA »

keri
Forum Junkie
Forum Junkie
Posts: 183
Joined: Tue Sep 14, 2010 3:10 pm

Post by keri »

Wenn man innerhalb der Seite navigiert kommt eine Art PopUp das man doch bitte den Adblocker ausschalten möge.

Code: Select all


<body onload="documentLoader()">
<div id="layer" style="background:rgba(0,0,0,0.5); position:absolute; width:100%; height:100%; display:none; z-index:100; color:#FFF;">
<div style="margin: 10% auto; background: white; width:400px; height: 200px; color: #000; border-radius: 8px; padding: 20px; line-height: 1.8em; text-align:center; font-size: 18px; border: 1px solid grey;">
Please disable your ad blocker!!<br />
Bitte deaktivieren Sie Ihren Werbeblocker!<br>
Veuillez d&#233;sactiver votre bloqueur de publicit&#233;!<br>
Por favor, desactive el bloqueador de anuncios!<br><br>
<button type="button" OnClick='document.getElementById("layer").style.display = "none";'>OK</button>
</div>
</div>

<script>
function adBlockDetected() {

document.getElementById("layer").style.display = "block";
}
function adBlockNotDetected() {
document.getElementById("layer").style.display = "none";
}

if(typeof blockAdBlock === 'undefined') {
adBlockDetected();
} else {
blockAdBlock.onDetected(adBlockDetected).onNotDetected(adBlockNotDetected);
}
</script>
Scheint der springende Punkt zu sein. Leider keine Ahnung ob man dem ohne Userscripts beikommen kann.
MonztA
EasyList Author
EasyList Author
Posts: 8121
Joined: Thu Jul 26, 2007 4:19 pm
Location: Germany

Post by MonztA »

Muss man eingeloggt sein? Sehe da nichts.
keri
Forum Junkie
Forum Junkie
Posts: 183
Joined: Tue Sep 14, 2010 3:10 pm

Post by keri »

Ja muss man, diese lästige Meldung erscheint wenn man zwischen einzelnen Unterseiten wechselt.
Locked