Redirect to the pad when logging in or signing up from a pad

This commit is contained in:
yflory
2017-02-14 11:29:08 +01:00
parent 92050eb04f
commit 71b84afdb2
3 changed files with 24 additions and 2 deletions

View File

@@ -120,7 +120,17 @@ define([
Cryptpad.whenRealtimeSyncs(result.realtime, function () {
Cryptpad.login(result.userHash, result.userName, function () {
document.location.href = '/drive/';
if (sessionStorage.redirectTo) {
var h = sessionStorage.redirectTo;
var parser = document.createElement('a');
parser.href = h;
if (parser.origin === window.location.origin) {
delete sessionStorage.redirectTo;
window.location.href = h;
return;
}
}
window.location.href = '/drive/';
});
});
});