mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
gh-128627: Emscripten: Add missing semicolon in ios detection code (#135590)
This commit is contained in:
parent
730133a0ac
commit
68b7e1a667
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ function getPyEMCountArgsPtr() {
|
||||||
// To differentiate, we check if the platform is 'MacIntel' (common for Macs and newer iPads)
|
// To differentiate, we check if the platform is 'MacIntel' (common for Macs and newer iPads)
|
||||||
// AND if the device has multi-touch capabilities (navigator.maxTouchPoints > 1)
|
// AND if the device has multi-touch capabilities (navigator.maxTouchPoints > 1)
|
||||||
(navigator.platform === 'MacIntel' && typeof navigator.maxTouchPoints !== 'undefined' && navigator.maxTouchPoints > 1)
|
(navigator.platform === 'MacIntel' && typeof navigator.maxTouchPoints !== 'undefined' && navigator.maxTouchPoints > 1)
|
||||||
)
|
);
|
||||||
if (isIOS) {
|
if (isIOS) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue