How To Trigger A Controller Function After An Animation In Angular JS
I have come to a standstill in terms on threading together a sequence of Animations and then a controller action. What I basically want to do is basically 1. click on a button/div
Solution 1:
You can get the $scope of an element using,
var $scope = angular.element(element).scope();
Though there are some problems with syncing the scope if this happens.
Post a Comment for "How To Trigger A Controller Function After An Animation In Angular JS"