From 6aa929f2a7dfb4264bbcb05e77e91984d3441cae Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Tue, 20 Feb 2018 15:12:45 +0100 Subject: Fix redirect for Firefox on Android --- src/webex/compat.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src/webex/compat.ts') diff --git a/src/webex/compat.ts b/src/webex/compat.ts index f532c43bc..30ffd4a81 100644 --- a/src/webex/compat.ts +++ b/src/webex/compat.ts @@ -14,15 +14,15 @@ TALER; see the file COPYING. If not, see */ - /** - * Compatibility helpers needed for browsers that don't implement - * WebExtension APIs consistently. - */ +/** +* Compatibility helpers needed for browsers that don't implement +* WebExtension APIs consistently. +*/ - export function isFirefox(): boolean { - const rt = chrome.runtime as any; - if (typeof rt.getBrowserInfo === "function") { - return true; - } - return false; - } +export function isFirefox(): boolean { + const rt = chrome.runtime as any; + if (typeof rt.getBrowserInfo === "function") { + return true; + } + return false; +} -- cgit v1.2.3