1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

listen for events in safari on bg runtime

This commit is contained in:
Kyle Spearrin
2018-01-12 23:15:27 -05:00
parent f01ee13102
commit 6c7646a481
2 changed files with 13 additions and 14 deletions

View File

@@ -48,21 +48,19 @@ export default class RuntimeBackground {
win.location.href = href;
}
}, true);
} else {
if (this.runtime.onInstalled) {
this.runtime.onInstalled.addListener((details: any) => {
(window as any).ga('send', {
hitType: 'event',
eventAction: 'onInstalled ' + details.reason,
});
return;
}
if (this.runtime.onInstalled) {
this.runtime.onInstalled.addListener((details: any) => {
(window as any).ga('send', {
hitType: 'event',
eventAction: 'onInstalled ' + details.reason,
if (details.reason === 'install') {
chrome.tabs.create({ url: 'https://bitwarden.com/browser-start/' });
}
});
if (details.reason === 'install') {
chrome.tabs.create({ url: 'https://bitwarden.com/browser-start/' });
}
});
}
}
BrowserApi.messageListener(async (msg: any, sender: any, sendResponse: any) => {