Home > Back-end >  navigator.maxTouchPoints = 256 on desktop
navigator.maxTouchPoints = 256 on desktop

Time:09-17

I rly dont know what to do anymore.

If I run this js:

    console.log(navigator.maxTouchPoints);

I get 256 as answer on my DESKTOP

  • I tested it on chrome and FireFox (both latest version).

  • I resetted chrome

  • I made new VsCode project with same code

nothing helped

Any ideas what is wrong with my pc?

image of FireFox running code

CodePudding user response:

Seems like a bug with Windows 10 and Firefox. You can refer to this answer for a workaround. Although the answer mentions it, I wasn't able to find a reported bug on BugZilla yet.

  • Related