cubiq / iscroll

Smooth scrolling for the web
http://iscrolljs.com
MIT License
12.87k stars 3.8k forks source link

iscroll not working in android 7.0 #1137

Open suyiya opened 7 years ago

suyiya commented 7 years ago

especially in google phone such as nexus use Native Android system, xiaomi and huawei in android 7.0 is ok. Thank u for your help!

smalllong commented 7 years ago

it's not working in 6.0 as well when using chrome

iCorners commented 7 years ago

It's not working in android 7.0, such as Samsung and Honor

thuelsmeier commented 7 years ago

For me the following did fix the problem: change in iscroll.js line: 331 - 333 from this: 331: disablePointer : !utils.hasPointer, 332: disableTouch : utils.hasPointer || !utils.hasTouch, 333: disableMouse : utils.hasPointer || utils.hasTouch,

To: 331: disablePointer : true, 332: disableTouch : false, 333: disableMouse : true,

Also add those options to your options of iScroll: disablePointer: true, disableMouse: true, disableTouch: false,