Angular Ng-style Does Not Update In Safari
I've built a pretty simple carousel in Angular using CSS animations and it works great in Chrome, but when I decided to test in Safari I noticed the click and drag functionality do
Solution 1:
Have you tried doing a console.log
on the style object that is being generated and returned by the getAnimatorStyles()
function? Perhaps there's something happening there that you're not expecting.
Also, can you copy/paste that same style object back into the template definition, just to test it and see if anything different happens?
When I'm totally stuck, I always double-check the basics just to rule them out. Sometimes, it is just a basic error that we overlook because we're looking for a more difficult problem which doesn't exist.
Post a Comment for "Angular Ng-style Does Not Update In Safari"