mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
reload popup fix
This commit is contained in:
parent
839bd4e8fc
commit
9597e76e92
@ -34,13 +34,12 @@ export default class RuntimeBackground {
|
||||
// Reload the popup when it's opened
|
||||
this.runtime.addEventListener('popover', (event: any) => {
|
||||
const win: Window = event.target.contentWindow;
|
||||
const body = win.document.body;
|
||||
let child: Node = body.firstChild;
|
||||
while (child) {
|
||||
body.removeChild(child);
|
||||
child = body.firstChild;
|
||||
const href = win.location.origin + win.location.pathname;
|
||||
if(win.location.toString() === href) {
|
||||
win.location.reload();
|
||||
} else {
|
||||
win.location.href = href;
|
||||
}
|
||||
win.location.reload();
|
||||
}, true);
|
||||
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user