iscroll icon indicating copy to clipboard operation
iscroll copied to clipboard

iscroll not working in android 7.0

Open suyiya opened this issue 7 years ago • 3 comments

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!

suyiya avatar Mar 17 '17 08:03 suyiya

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

smalllong avatar Apr 17 '17 10:04 smalllong

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

iCorners avatar Jun 29 '17 05:06 iCorners

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,

thuelsmeier avatar Jul 14 '17 12:07 thuelsmeier