Skip to content

Instantly share code, notes, and snippets.

@joemccann
Created June 11, 2011 14:44
Show Gist options
  • Save joemccann/1020617 to your computer and use it in GitHub Desktop.
Save joemccann/1020617 to your computer and use it in GitHub Desktop.
Google Docs "Full Screen" Hack
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