mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 22:33:35 +00:00
listen for events in safari on bg runtime
This commit is contained in:
@@ -39,7 +39,7 @@
|
||||
<key>Filename</key>
|
||||
<string>popup/index.html</string>
|
||||
<key>Height</key>
|
||||
<integer>667</integer>
|
||||
<integer>600</integer>
|
||||
<key>Identifier</key>
|
||||
<string>bitwarden-popup</string>
|
||||
<key>Width</key>
|
||||
@@ -73,6 +73,7 @@
|
||||
<key>Start</key>
|
||||
<array>
|
||||
<string>content/autofill.js</string>
|
||||
<string>content/autofiller.js</string>
|
||||
</array>
|
||||
</dict>
|
||||
<key>Stylesheets</key>
|
||||
|
||||
@@ -48,10 +48,7 @@ export default class RuntimeBackground {
|
||||
win.location.href = href;
|
||||
}
|
||||
}, true);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
} else {
|
||||
if (this.runtime.onInstalled) {
|
||||
this.runtime.onInstalled.addListener((details: any) => {
|
||||
(window as any).ga('send', {
|
||||
@@ -64,6 +61,7 @@ export default class RuntimeBackground {
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
BrowserApi.messageListener(async (msg: any, sender: any, sendResponse: any) => {
|
||||
await this.processMessage(msg, sender, sendResponse);
|
||||
|
||||
Reference in New Issue
Block a user