Is there a way to achieve the same effect as using ui-sref-opts="{reload: true}" or pressing F5, but from within my controller?
I attempted the following code:
$state.transitionTo(myStateIWhantToReload, $stateParams, {reload:true, inherit:false})
However, it does not fully reload :/
Thank you!