- From: Ziad El Khoury Hanna <notifications@github.com>
- Date: Tue, 16 Jul 2024 05:39:31 -0700
- To: w3c/uievents <uievents@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 16 July 2024 12:39:35 UTC
@karlcow The detection is based on `navigator.platform` and is very basic, but works well enough: ```js const isApple = /^Mac|iPhone|iPod|iPad/i.test(navigator.platform); ``` -- Reply to this email directly or view it on GitHub: https://github.com/w3c/uievents/issues/181#issuecomment-2230786151 You are receiving this because you are subscribed to this thread. Message ID: <w3c/uievents/issues/181/2230786151@github.com>
Received on Tuesday, 16 July 2024 12:39:35 UTC