1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

detect and update password changes

This commit is contained in:
Kyle Spearrin
2018-07-31 23:24:11 -04:00
parent 272f6cfde6
commit cf57eadd1d
9 changed files with 248 additions and 110 deletions

View File

@@ -22,7 +22,7 @@ export default class TabsBackground {
}, true);
this.tabs.addEventListener('navigate', async (ev: any) => {
await this.main.checkLoginsToAdd();
await this.main.checkNotificationQueue();
await this.main.refreshBadgeAndMenu();
}, true);
@@ -38,7 +38,7 @@ export default class TabsBackground {
return;
}
this.main.onReplacedRan = true;
await this.main.checkLoginsToAdd();
await this.main.checkNotificationQueue();
await this.main.refreshBadgeAndMenu();
});
@@ -47,7 +47,7 @@ export default class TabsBackground {
return;
}
this.main.onUpdatedRan = true;
await this.main.checkLoginsToAdd();
await this.main.checkNotificationQueue();
await this.main.refreshBadgeAndMenu();
});
}