1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

lint fixes

This commit is contained in:
Kyle Spearrin
2018-01-12 13:27:40 -05:00
parent 347b1d2910
commit de910ee195
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ export default class RuntimeBackground {
this.runtime.addEventListener('popover', (event: any) => {
const win: Window = event.target.contentWindow;
const href = win.location.origin + win.location.pathname;
if(win.location.toString() === href) {
if (win.location.toString() === href) {
win.location.reload();
} else {
win.location.href = href;