Improve logout app

This commit is contained in:
yflory 2021-04-12 15:02:10 +02:00
parent 93ea996f86
commit b8914fef1b
1 changed files with 12 additions and 3 deletions

View File

@ -1,4 +1,13 @@
define(['/bower_components/localforage/dist/localforage.min.js'], function (localForage) {
localForage.clear();
localStorage.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/';
});
});