From 267ebb320a4375caa8216c9fd15e4aab26028454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Baz=20Castillo?= Date: Wed, 7 Jun 2017 11:58:27 +0200 Subject: [PATCH] Add Edge and Safari as PlanB browsers --- app/lib/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/utils.js b/app/lib/utils.js index 8c0a6ad..06512bb 100644 --- a/app/lib/utils.js +++ b/app/lib/utils.js @@ -36,7 +36,7 @@ export function isMobile() export function isPlanB() { - if (browser.chrome || browser.chromium || browser.opera || browser.msedge) + if (browser.chrome || browser.chromium || browser.opera || browser.safari || browser.msedge) return true; else return false;