Skip to content

Commit

Permalink
update maxTouchPoints
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorin-Oakenpants authored Oct 4, 2024
1 parent c97b4a4 commit 1b1212c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/devices.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ function get_maxtouch(METRIC) {
} catch(e) {
value = e; data = zErrLog
}
addBoth(7, METRIC, value,'', (0 == value ? rfp_green : rfp_red), data, isProxyLie('Navigator.'+ METRIC))
// 1826051: FF132+ 10 except mac
let rfpvalue = (isVer > 131 && 'mac' !== isOS) ? 10 : 0
addBoth(7, METRIC, value,'', (rfpvalue == value ? rfp_green : rfp_red), data, isProxyLie('Navigator.'+ METRIC))
return
}

Expand Down

0 comments on commit 1b1212c

Please sign in to comment.