Created
June 11, 2011 14:44
-
-
Save joemccann/1020617 to your computer and use it in GitHub Desktop.
Google Docs "Full Screen" Hack
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 d = document; | |
var footerH = parseInt(d.getElementById('footer').style.height); | |
d.getElementById('slide_nav_fg').style.display = d.getElementById('footer').style.display = "none"; | |
var presH = (parseInt(d.getElementById('main').style.height) + footerH) + 'px'; | |
d.getElementById('primaryViewSlide').style.height = d.getElementById('primaryView').style.height = d.getElementById('main').style.height = presH; | |
d.getElementById('main').style.marginTop = footerH - 30 + 'px'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment