Remove unused iOS agent sniffing function (#24931)
This commit is contained in:
parent
72dcb2ef58
commit
224d458f7e
1 changed files with 0 additions and 6 deletions
|
@ -16,10 +16,6 @@ export const layoutFromWindow = (): LayoutType => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
||||||
// @ts-expect-error
|
|
||||||
const iOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && window.MSStream != null;
|
|
||||||
|
|
||||||
const listenerOptions = supportsPassiveEvents ? { passive: true } : false;
|
const listenerOptions = supportsPassiveEvents ? { passive: true } : false;
|
||||||
|
|
||||||
let userTouching = false;
|
let userTouching = false;
|
||||||
|
@ -33,5 +29,3 @@ const touchListener = () => {
|
||||||
window.addEventListener('touchstart', touchListener, listenerOptions);
|
window.addEventListener('touchstart', touchListener, listenerOptions);
|
||||||
|
|
||||||
export const isUserTouching = () => userTouching;
|
export const isUserTouching = () => userTouching;
|
||||||
|
|
||||||
export const isIOS = () => iOS;
|
|
||||||
|
|
Loading…
Reference in a new issue