FIX: ensure we still works with cookies off

This commit is contained in:
Régis Hanol 2015-09-11 14:44:14 +02:00
parent 0c58f08207
commit 569f2815d1
1 changed files with 1 additions and 0 deletions

View File

@ -32,6 +32,7 @@ KeyValueStore.prototype = {
},
remove(key) {
if (!safeLocalStorage) { return; }
return safeLocalStorage.removeItem(this.context + key);
},