AC-712 fixed login spinnning tab disable issue

This commit is contained in:
chris Houseknecht
2014-01-22 12:36:22 -05:00
parent 7269c7bd06
commit 9fe9556b50
4 changed files with 13 additions and 16 deletions

View File

@@ -56,13 +56,14 @@ angular.module('AuthService', ['ngCookies', 'Utilities'])
$cookieStore.remove('lastPath');
$cookieStore.put('userLoggedIn', false);
$cookieStore.put('sessionExpired', false);
$cookieStore.remove('lastPath', '/home');
$rootScope.current_user = {};
$rootScope.license_tested = undefined;
$rootScope.userLoggedIn = false;
$rootScope.sessionExpired = false;
$rootScope.token = null;
$rootScope.token_expires = null;
$rootScope.lastPath = '/';
$rootScope.lastPath = '/home';
},
getLicense: function() {