We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This error occurs when angularPlayer service is used and soundManager directive exists on the page.
angularPlayer
soundManager
Example:
angularPlayer.addTrack
ng-click
ng-something
player:playlist
scope.$on('player:playlist', function(event, data) { scope.$apply(function() { scope.playlist = data; }); });
Note: We are still in $apply phase, because angular events are handled synchronously. 4. Error occurs
Error: [$rootScope:inprog] $apply already in progress
The plunker is here http://plnkr.co/edit/77Fy0oJpvRrPrmG1YRbR?p=preview.
The text was updated successfully, but these errors were encountered:
$apply in progress, perminder-klair#42
716c3d5
ded942c
Pull request #43
Sorry, something went wrong.
I have the same problem, solved by xduseko's fix, thanks.
No branches or pull requests
This error occurs when
angularPlayer
service is used andsoundManager
directive exists on the page.Example:
angularPlayer.addTrack
insideng-click
event handler.Note: Every
ng-something
handler is executed in $apply phase by AngularJS.angularPlayer.addTrack
broadcastsplayer:playlist
event.Note: We are still in $apply phase, because angular events are handled synchronously.
4. Error occurs
The plunker is here http://plnkr.co/edit/77Fy0oJpvRrPrmG1YRbR?p=preview.
The text was updated successfully, but these errors were encountered: