forked from XiaoMo/ChatGPT-Next-Web
fix: solve navigator undefined && merge from main
This commit is contained in:
parent
406ed8a02a
commit
00d45e7cc4
@ -52,7 +52,9 @@ export function isMobileScreen() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function isFirefox() {
|
export function isFirefox() {
|
||||||
return /firefox/i.test(navigator.userAgent);
|
return (
|
||||||
|
typeof navigator !== "undefined" && /firefox/i.test(navigator.userAgent)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function selectOrCopy(el: HTMLElement, content: string) {
|
export function selectOrCopy(el: HTMLElement, content: string) {
|
||||||
|
Loading…
Reference in New Issue
Block a user