Issue
In my hybrid
app there's a possibility to drag the screen to refresh the list. In Android
this works fine, but on iOS
when I'm dragging down it sometimes confuses it with scrolling the page so it has that overflow/bouncing effect.
In ionic
there's an attribute you can use to disable this, but it's not working:
<ion-content id="questions" has-bouncing="false">
config.xml already has these lines of code:
<preference name="webviewbounce" value="false"/>
<preference name="UIWebViewBounce" value="false"/>
<preference name="DisallowOverscroll" value="true"/>
Solution
You will need to set overflow-scroll
to false
like :
overflow-scroll="false"
Works on Ionic 1.3
Answered By - radioaktiv
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.