Skip to content

Instantly share code, notes, and snippets.

@paxti
Created February 24, 2016 15:23
Show Gist options
  • Save paxti/6737876115aa74c05c12 to your computer and use it in GitHub Desktop.
Save paxti/6737876115aa74c05c12 to your computer and use it in GitHub Desktop.
<script>
function resize(id){
var width1 = (window.innerWidth > 0) ? window.innerWidth : screen.width;
var height1 = (window.innerHeight > 0) ? window.innerHeight : screen.height;
var height1 = height1 * 0.8;
document.getElementById(id).height = height1;
document.getElementById(id).width = width1;
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment