Skip to content

Instantly share code, notes, and snippets.

@etozzato
Created October 13, 2014 23:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save etozzato/85da5cb66ab935d06ebf to your computer and use it in GitHub Desktop.
Save etozzato/85da5cb66ab935d06ebf to your computer and use it in GitHub Desktop.
Window Resize
// in the component's didInsertElement
$(window).on('resize', function() {
return Em.run.debounce(that, 'resizeWindow', 250);
});
// in the route's willTransition
$(window).off('resize');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment