dotjs for hiding nyt paywall (apparently)

This commit is contained in:
Kenneth Reitz
2011-04-02 11:35:45 -04:00
parent 26526f13e9
commit 7e659c79a7
+6
View File
@@ -0,0 +1,6 @@
// No more paywall
document.observe("dom:loaded", function() {
$$('overlay').hide();
$$('gatewayCreative').hide();
$$(document.body).setStyle( { overflow:'scroll' } );
});