Hi,
I use overflow scroll on iOs and it’s not working.
Works well on Androïd.
and jsScrolling works, but too slow.
Is there any known issue ?
Thanks
Hi,
I use overflow scroll on iOs and it’s not working.
Works well on Androïd.
and jsScrolling works, but too slow.
Is there any known issue ?
Thanks
To reproduce it :
create a new app :
ionic start myApp tabs
cd myApp/
ionic platform add ios
Edit file www/templates/tab-dash.html and duplicate content to have scroll
Edit ion-content to add overflow-scroll property.
Run on Ipad mini, with iOS 8.2
Scroll is not working.
Seems it working with removing -webkit-overflow-scrolling: touch on overflow-scroll class, but the scroll is not perfect.
Thanks for your help,
opened an issue on github : https://github.com/driftyco/ionic/issues/3267
Solved!
go to ionic.bundle.js and replace
return 'x';
to
return 'y';
it is on line number 43582 or so
Can you be more specific. I looked in ionic.bundle.js and went to line 43582 and “return ‘x’” wasn’t found anywhere.
Just search the ionic bundle js file for
return 'x';
if for example you are using ionic 13
http://code.ionicframework.com/1.0.0-beta.13/js/ionic.bundle.js
then search for return ‘x’; and change it to return ‘y’;
Ah, that’s why I can’t find it. I’m using ionic 14 and rc.1 (separate branches) so that section of code must have been worked on and changed.