From d0516143423afaf6fe9c6db71ee67e5aef99b013 Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 23 May 2024 08:45:24 -0700 Subject: implement a safari hack for ime (#4186) remove debug logs use a better hack implement a safari hack extract `isSafari` and `isFirefox` to a global variable --- src/lib/browser.native.ts | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/lib/browser.native.ts (limited to 'src/lib/browser.native.ts') diff --git a/src/lib/browser.native.ts b/src/lib/browser.native.ts new file mode 100644 index 000000000..3ac238b94 --- /dev/null +++ b/src/lib/browser.native.ts @@ -0,0 +1,2 @@ +export const isSafari = false +export const isFirefox = false -- cgit 1.4.1