Open suyiya opened 7 years ago
it's not working in 6.0 as well when using chrome
It's not working in android 7.0, such as Samsung and Honor
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,
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!