1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 02:03:39 +00:00

separating background apis to their own classes

This commit is contained in:
Kyle Spearrin
2017-12-07 15:06:37 -05:00
parent 142e33eb05
commit 8f1757401e
6 changed files with 199 additions and 75 deletions

View File

@@ -0,0 +1,23 @@
import MainBackground from './main.background';
export default class WindowsBackground {
private windows: any;
constructor(private main: MainBackground) {
this.windows = chrome.windows;
}
async init() {
if (!this.windows) {
return;
}
this.windows.onFocusChanged.addListener(async (windowId: any) => {
if (windowId === null || windowId < 0) {
return;
}
await this.main.refreshBadgeAndMenu();
});
}
}