Skip to content

Instantly share code, notes, and snippets.

@nagarjun
Forked from etozzato/gist:85da5cb66ab935d06ebf
Last active August 29, 2015 14:10
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save nagarjun/230ab547f3a50801f2ee to your computer and use it in GitHub Desktop.
Destroy any jQuery click handlers that have been set before transitioning to a different route.
// in the component's didInsertElement
$(window).on('resize', function() {
return Em.run.debounce(that, 'resizeWindow', 250);
});
// in the route's willTransition
actions: {
willTransition: function() {
$(window).off('resize');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment