vistaprint/PointyJS

Chrome 55 bug

Closed this issue · 1 comments

Chrome 55 (released late Nov 2016) did not support the w3c's spec for navigator.pointerEnabled. I made this change to my copy and thought you might want to add it too.

-        pointer: !! (navigator.pointerEnabled || navigator.msPointerEnabled)
+        pointer: !! (navigator.pointerEnabled || navigator.msPointerEnabled || window.PointerEvent)

Thank you! This has been working fine for so long, I almost thought I was off the hook for maintenance :(
Fixed with: 3f31bae