Skip to content

Instantly share code, notes, and snippets.

@coopy
Last active March 1, 2018 16:22
Show Gist options
  • Save coopy/855e7df0e6101775957cda17ba015df3 to your computer and use it in GitHub Desktop.
Save coopy/855e7df0e6101775957cda17ba015df3 to your computer and use it in GitHub Desktop.
javascript: (function () {
var content = document.querySelectorAll('.article__premium-content')[0];
var intro = document.querySelectorAll('.article__lead')[0];
var payWall = document.querySelectorAll('#serviceplusPaywallpaywall-container')[0];
var social = document.querySelectorAll('.js-social-toolbar')[0];
var ghost = document.querySelectorAll('.article__body--mask .article__lead')[0];
intro.style.overflow = "visible";
content.style.display = "block";
payWall.style.display = "none";
social.style.display = "none";
ghost.style.position = "static";
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment