mirror of https://github.com/xwiki-labs/cryptpad
Improve logout app
This commit is contained in:
parent
93ea996f86
commit
b8914fef1b
|
@ -1,4 +1,13 @@
|
|||
define(['/bower_components/localforage/dist/localforage.min.js'], function (localForage) {
|
||||
localForage.clear();
|
||||
define([
|
||||
'/bower_components/localforage/dist/localforage.min.js',
|
||||
'/common/outer/cache-store.js',
|
||||
'/bower_components/nthen/index.js',
|
||||
], function (localForage, Cache, nThen) {
|
||||
nThen(function (w) {
|
||||
localStorage.clear();
|
||||
localForage.clear(w());
|
||||
Cache.clear(w());
|
||||
}).nThen(function () {
|
||||
window.location.href = '/login/';
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue