mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-02 18:17:46 +01:00
logout issues with cache fixed. updated chrome store images
This commit is contained in:
parent
f1792c6be6
commit
3f95c3a7ea
@ -72,6 +72,8 @@
|
|||||||
userService.clearEmail(function () {
|
userService.clearEmail(function () {
|
||||||
siteService.clear(userId, function () {
|
siteService.clear(userId, function () {
|
||||||
folderService.clear(userId, function () {
|
folderService.clear(userId, function () {
|
||||||
|
$rootScope.vaultSites = null;
|
||||||
|
$rootScope.vaultFolders = null;
|
||||||
callback();
|
callback();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
<p>
|
<p>
|
||||||
There are no folders to list.
|
There are no folders to list.
|
||||||
<a ui-sref="addFolder({animation: 'in-slide-up'})" style="margin-top: 20px;"
|
<a ui-sref="addFolder({animation: 'in-slide-up'})" style="margin-top: 20px;"
|
||||||
class="btn btn-link btn-lg btn-block">Add a Folder</a>
|
class="btn btn-link btn-block">Add a Folder</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="page-loading" ng-if="!loaded">
|
<div class="page-loading" ng-if="!loaded">
|
||||||
|
@ -82,8 +82,10 @@ function initFolderService() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Q.all(promises).then(function () {
|
Q.all(promises).then(function () {
|
||||||
self.decryptedFolderCache = decFolders;
|
if (decFolders.length > 0) {
|
||||||
deferred.resolve(self.decryptedFolderCache);
|
self.decryptedFolderCache = decFolders;
|
||||||
|
}
|
||||||
|
deferred.resolve(decFolders);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -177,6 +179,8 @@ function initFolderService() {
|
|||||||
throw 'callback function required';
|
throw 'callback function required';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var self = this;
|
||||||
|
|
||||||
chrome.storage.local.remove('folders_' + userId, function () {
|
chrome.storage.local.remove('folders_' + userId, function () {
|
||||||
self.decryptedFolderCache = null;
|
self.decryptedFolderCache = null;
|
||||||
callback();
|
callback();
|
||||||
|
@ -191,6 +191,8 @@ function initSiteService() {
|
|||||||
throw 'callback function required';
|
throw 'callback function required';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var self = this;
|
||||||
|
|
||||||
chrome.storage.local.remove('sites_' + userId, function () {
|
chrome.storage.local.remove('sites_' + userId, function () {
|
||||||
self.decryptedSiteCache = null;
|
self.decryptedSiteCache = null;
|
||||||
callback();
|
callback();
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 96 KiB |
BIN
store/chrome/en-US/screenshots/edit.png
Normal file
BIN
store/chrome/en-US/screenshots/edit.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 59 KiB |
Binary file not shown.
Before Width: | Height: | Size: 124 KiB After Width: | Height: | Size: 124 KiB |
Loading…
Reference in New Issue
Block a user