reload popup fix

This commit is contained in:
Kyle Spearrin 2018-01-12 12:41:51 -05:00
parent 839bd4e8fc
commit 9597e76e92
1 changed files with 5 additions and 6 deletions

View File

@ -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;
}
}, true);
return;