Hi,
I'm trying to redirect the browser to the login page using AngularJS from an app page but I can't do it. I'm using this code from a custom widget:
$window.location.href =$scope.properties.URL;//URL is the login page $window.location.reload();
That code loads the login page but in the custom page frame, not the window, then I got the login page embedded on my app page. ( Click here for viewing an example )
How can I redirect all the window?
Thanks in advance.