Stopping overscroll / bounce in Phonegap IOS

前端 未结 20 1446
青春惊慌失措
青春惊慌失措 2020-12-07 18:53

I am using the latest version of Phonegap on IOS (ipad) and I can\'t seem to disable the vertical overscroll/bounce on the whole app. I don\'t mind it on inner elements but

相关标签:
20条回答
  • 2020-12-07 19:21

    now for phonegap 3.0 above version use below syntex in config.xml file and it will works 100%

    <preference name="DisallowOverscroll" value="true"/>
    
    0 讨论(0)
  • 2020-12-07 19:21

    This worked for me. Try adding this code in config.xml file of your phonegap app:

    <preference name="DisallowOverscroll" value="true">

    0 讨论(0)
提交回复
热议问题