Enable redirection to the previous page after registration

This commit is contained in:
yflory
2017-10-04 15:55:57 +02:00
parent ceb8ff18bd
commit 5304dc319f

View File

@@ -85,8 +85,6 @@ define([
Cryptpad.whenRealtimeSyncs(result.realtime, function () { Cryptpad.whenRealtimeSyncs(result.realtime, function () {
Cryptpad.login(result.userHash, result.userName, function () { Cryptpad.login(result.userHash, result.userName, function () {
registering = false; registering = false;
/*
FIXME: migration and readme not working if not redirected to drive
if (sessionStorage.redirectTo) { if (sessionStorage.redirectTo) {
var h = sessionStorage.redirectTo; var h = sessionStorage.redirectTo;
var parser = document.createElement('a'); var parser = document.createElement('a');
@@ -97,7 +95,6 @@ define([
return; return;
} }
} }
*/
window.location.href = '/drive/'; window.location.href = '/drive/';
}); });
}); });