Make sure we redirect to the drive if we access the login page from the homepage
This commit is contained in:
@@ -1176,11 +1176,15 @@ define([
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
$userAdmin.find('a.login').click(function (e) {
|
$userAdmin.find('a.login').click(function (e) {
|
||||||
sessionStorage.redirectTo = window.location.href;
|
if (window.location.pathname !== "/") {
|
||||||
|
sessionStorage.redirectTo = window.location.href;
|
||||||
|
}
|
||||||
window.location.href = '/login/';
|
window.location.href = '/login/';
|
||||||
});
|
});
|
||||||
$userAdmin.find('a.register').click(function (e) {
|
$userAdmin.find('a.register').click(function (e) {
|
||||||
sessionStorage.redirectTo = window.location.href;
|
if (window.location.pathname !== "/") {
|
||||||
|
sessionStorage.redirectTo = window.location.href;
|
||||||
|
}
|
||||||
window.location.href = '/register/';
|
window.location.href = '/register/';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user