cubiq / iscroll

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

scroller cannot bounce back on iPhone #1144

Open foot3188 opened 7 years ago

foot3188 commented 7 years ago

It seems to touchEnd event cannot be fired on iPhone,it's ok on android phones.

I solved this bug with these code in line:517 (iScroll v5.2.0 )

if(point.clientY>=document.body.clientHeight-10&&navigator.userAgent.match(/iPhone|iPad|iPod/)){ this._end(e); return ; }