We have a few iOS clients complaining that the "back" button we implemented in the AngularJS app doesn't always work. The back button is just an image that performs a $window.history.back()
. I've read that using window.history.go(-1)
is preferred but this isn't the Angular way.
Does anyone know of any problems in iOS with $window.history.back
? And if so, what is the correct way of implementing this in AngularJS
?