Advertisement
Guest User

Untitled

a guest
May 24th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $scope.currentUser = authService.authentication;
  2.  
  3. console.log($scope.currentUser); // shows all properties ok.
  4.  
  5. $scope.fromCurrentUser = $scope.currentUser;
  6.  
  7. console.log($scope.fromCurrentUser); // show all properties ok
  8.  
  9. console.log($scope.fromCurrentUser.userAvatarImgUrl); // blank in the console
  10.  
  11. var comaId = $scope.currentUser.orgId;
  12.  
  13. console.log(comaId); // blank in the console
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement