diff options
author | Hailey <me@haileyok.com> | 2024-05-23 08:45:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-23 16:45:24 +0100 |
commit | d0516143423afaf6fe9c6db71ee67e5aef99b013 (patch) | |
tree | ec2ed99a6e9fbed68c9f7107213931dc483a67b1 /src/lib/browser.native.ts | |
parent | 2c6c906934a0b567e4e63025d1f69d534776b79d (diff) | |
download | voidsky-d0516143423afaf6fe9c6db71ee67e5aef99b013.tar.zst |
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
Diffstat (limited to 'src/lib/browser.native.ts')
-rw-r--r-- | src/lib/browser.native.ts | 2 |
1 files changed, 2 insertions, 0 deletions
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 |