There is a custom event called core-transitionend
(specifically triggered by Polymer), and I am able to specify an event handler using document.addEventListener()
. However, what would be the most recommended approach for achieving this in AngularJS?
Alternatively, I could directly define a handler in the DOM like so:
<paper-ripple on-core-transitionend="enter()"></paper-ripple>
, but how can I implement this function in AngularJS?