From 0032d7b943e590afa32995b9d859452b0ad99d9b Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 23 Apr 2020 15:55:13 +0100 Subject: [PATCH] fix Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/vector/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vector/index.ts b/src/vector/index.ts index 52fd2b6a8..717096e00 100644 --- a/src/vector/index.ts +++ b/src/vector/index.ts @@ -208,7 +208,7 @@ start().catch(err => { // with some basic styling to make the iframe full page delete document.body.style.height; const iframe = document.createElement("iframe"); - iframe.src = acceptBrowser ? "static/unable-to-load.html" : "static/incompatible-browser.html"; + iframe.src = supportedBrowser ? "static/unable-to-load.html" : "static/incompatible-browser.html"; iframe.style.width = "100%"; iframe.style.height = "100%"; iframe.style.position = "absolute";