From 7e659c79a7668d1b232c0c44f519cc5ae3d151a5 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 2 Apr 2011 11:35:45 -0400 Subject: [PATCH] dotjs for hiding nyt paywall (apparently) --- .js/nytimes.com.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .js/nytimes.com.js diff --git a/.js/nytimes.com.js b/.js/nytimes.com.js new file mode 100644 index 0000000..6e5a516 --- /dev/null +++ b/.js/nytimes.com.js @@ -0,0 +1,6 @@ +// No more paywall +document.observe("dom:loaded", function() { + $$('overlay').hide(); + $$('gatewayCreative').hide(); + $$(document.body).setStyle( { overflow:'scroll' } ); +});