Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. app.controller('globalCtrl',function($scope,$route,$location){
  2.  
  3. $scope.changePath = function(newPath){
  4. if($location.path(newPath))
  5. alert($location.path());
  6. };
  7.  
  8. $scope.changePath("/login");
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement