From ae9332c0e5f6ba32e76b5a248da9c8e55b391ae2 Mon Sep 17 00:00:00 2001 From: Vyrtsev Mikhail Date: Wed, 14 Nov 2018 09:52:51 +0300 Subject: [PATCH] fix unnecessary property --- web/app/common/constants.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/common/constants.js b/web/app/common/constants.js index a4e1ef28..a526c2c7 100644 --- a/web/app/common/constants.js +++ b/web/app/common/constants.js @@ -59,7 +59,7 @@ export const STORAGE_AVAILABLE = (() => { */ export const IS_THIRD_PARTY = (() => { try { - return window.parent.document.location.host !== window.location.host; + return window.parent.location.host !== window.location.host; } catch (e) { return true; }