Redirect After X Seconds Angularjs
I already saw this thread but it uses ui-router and I'm only using the $routeProvider of AngularJS. The code in the thread is: .controller('SeeYouSoonCtrl', ['$scope', '$state', '$
Solution 1:
You need to use $location
service
$location.path('/anotherURL');
Post a Comment for "Redirect After X Seconds Angularjs"