Imagine I am currently in state A, and within this state there is a button with an ng-click
event handler like this:
$scope.go = function() {
$state.go("A");
}
My query is whether the events $stateChangeStart
and $stateChangeSuccess
are triggered?