Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. .controller('PageViewController', ['$scope', '$route', '$location', function($scope,$route, $location) {
  2.  
  3. if (!VerificaUsuarioLogado())
  4. {
  5. $location.path("/login");
  6. }
  7. else
  8. {
  9. CookieUsuarioLogado = ObterUsuarioLogado();
  10. ControleMenuPerfil();
  11. MostrarIncludes();
  12. }
  13.  
  14.  
  15.  
  16. }])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement