Skip to content

Instantly share code, notes, and snippets.

@matsko
Created November 28, 2013 05:29
Show Gist options
  • Save matsko/7687666 to your computer and use it in GitHub Desktop.
Save matsko/7687666 to your computer and use it in GitHub Desktop.
element.on('$animate:start', onAnimateStart);
element.on('$animate:close', onAnimateClose);
function onAnimateStart(data) {
element.off('$animate:start', onAnimateStart);
//do stuff
}
function onAnimateClose(data) {
element.off('$animate:close', onAnimateClose);
//do stuff
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment