Basically I have an "Options" page which has lets say 30 items.
When I click on one of these, this results in a different set of option.
And then when I click on the second List I would go to a results page.
Option 1 - state options
Option 1.1 - state options
Result - state result
On my result page I would like to be able to click back to go to state with the last options (which works) but then be able to click back again and go to original options.
The last part doesn't work since I then go to home page.
I can see why because in the history stack my options state doesnt get added twice but only once.
Is there anyway I can force the state to go into history stack twice ?
I tried like adding random parameters etc if it would help but no joy, this is how I currently go from state option -> state option.
$state.transitionTo('home.options', { updated : addressOptions.length}, {
reload: true,
inherit: false,
notify: true
});