I'm working on a project with angular 1.6.x and ui-router 1.0.x
I want to change the browser url without reloading states, to do so I tried this :
$state.transitionTo($state.$current.name, {param1: "value"}, {
location: true,
inherit: true,
relative: $state.$current,
reload: false,
//Seems to be deprecated...
notify: false
});
I just want to change the param1 value in url, but transitionTo reloads my current state and so destroy and re-create my controller.
I previously worked with ui-router 0.x and the notify parameter worked for that.
How can I do this with ui-router 1.0.x ?
Thank you !