Reputation: 2170
I have made an iOS application using PhoneGap Build
, Which works fine. I am having some kind of problem while scrolling a page. When I scroll from bottom or from Top whole screen moves. Is there any way to prevent this,as I know this is iOS
feature. Which is very nice but in case of my application I do not want this. So help me out.
Upvotes: 4
Views: 1470
Reputation: 82241
Use this in you config file:
<preference name="DisallowOverscroll" value="true" />
<preference name="webviewbounce" value="false" />
Upvotes: 2