I want to redirect mypage to home page if sessionStorage.logged is set to true. Below is my code. why my below code is not working.
Since i am new to angularjs i dont know how to this. I will be more thankfull to u if u help to solve this
.when('/login',
{
templateUrl: 'views/login.html',
controller:'LoginCtrl',
resolve:
{
mess:function()
{
var t=(sessionStorage.logged).toString();
if(t=="true")
{
redirectTo: '/home';
}
}
}
})