Skip to content

Instantly share code, notes, and snippets.

@mutoo
Created July 25, 2013 11:18
Show Gist options
  • Save mutoo/6078807 to your computer and use it in GitHub Desktop.
Save mutoo/6078807 to your computer and use it in GitHub Desktop.
var game = window.open('http://jenniferdewalt.com/window_sizer/game');
game.onload = function() {
game.$('#start').click();
setInterval(function() {
game.resizeTo(game.$('#target_area').width(), game.$('#target_area').height() + 50) // 50px for title bar + address bar
}, 50);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment