I have a wizard with multiple Steps. Let's say something like this:
Product > Address > Payment > Verify
On the /verify
step, the user buys something. If the user now presses the back button on the browser, he should go to the /product
step and not to the /payment
step. To do so, I want to change the browser history from /payment
to /product
so that he can buy more stuff.
I use angularjs 1.3.14
with enabled HTML5 mode and ui-router 0.2.10
. So the solution might use HTML5 history. but it would be nice if it also works for older browsers. But the support is nice to have.