What is the right way to do this in AngularJS? I didn\'t find any simple answer to this.
I\'d like to :
This works (thanks PSL):
.controller('SeeYouSoonCtrl', ['$scope', '$state', '$timeout', function($scope, $state, $timeout) { $timeout(function() { $state.go('AnotherState'); }, 3000); }])