Created
January 24, 2011 14:07
-
-
Save skammer/793256 to your computer and use it in GitHub Desktop.
И ваш грувшарк будет мягким и шелковистым.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var main = document.getElementById("mainContainer"); | |
var capital = document.getElementById("capital"); | |
var capitalPane = document.getElementById("capitalPane"); | |
var application = document.getElementById("application") | |
var removeAds = function() { | |
application.style.marginRight = "0"; | |
capital.style.display = "none"; | |
capital.style.width = "0px"; | |
capitalPane.style.display = "none"; | |
capitalPane.style.width = "0px"; | |
} | |
main.addEventListener("DOMSubtreeModified", removeAds, true); | |
removeAds(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment