ptolp
ptolp
+1 this would be awesome. I currently have an issue where I had to merge two libraries to try to solve a serious Sketch bug and it's a nightmare to...
Good news! Samsung has pushed Android 4.0.4 OS update to Samsung Galaxy 2 which fixes this bug.
This is probably the same issue: http://code.google.com/p/android/issues/detail?id=6721 Google claims they have fixed it, but can still be reproduced on my Android 4.0 device.
Note from the Android bug report the proposed workaround to disable all underlying interactive elements temporarily with JavaScript, which is often usability wise better than hiding tap highlights.
I've used the following snippet for detecting touch device and then disabling hotspots. ``` // remove smoothDivScroll hotspots on touchscreen var hasTouch; window.addEventListener('touchstart', function setHasTouch () { hasTouch = true;...