Redirect to the main page when logging out

pull/1/head
yflory 2017-01-30 15:26:32 +01:00
parent 6661eedacf
commit 58d8a30b5b
2 changed files with 3 additions and 2 deletions

View File

@ -175,7 +175,8 @@ define([
if (!o && n) {
window.location.reload();
} else if (o && !n) {
window.location.reload();
//window.location.reload();
window.location.href = '/';
}
});

View File

@ -439,7 +439,7 @@ define([
$userAdmin.find('a.logout').click(function (e) {
Cryptpad.logout();
window.location.reload();
window.location.href = '/';
});
$userAdmin.find('a.login').click(function (e) {
window.open('/user');