Hi.
I'm using angularjs to build a mobile HTML5 app. Everything works fine on the desktop. However as I started the testing on my iOS device I noticed that randomly it is not triggering events:
Some examples:
* I had to tap a button two times for it to take effect.
* It would not update a {{var}} in the partial after a redirect.
The issues were fixed by adding $scope.$apply() after certain events. But I'm guessing this is not the right approach and it's a bug, right?
This is happening on iOS 5.1 on an iPhone 5 on both Chrome and Safari.
Thanks!
M.