user2469560
user2469560

Reputation: 89

Disable bouncy scrolling in phonegap or "phonegap build" app for WP8

I wanted to disable the bouncing when scrolling outside the viewport area is there any way to solve this problem in phonegap or "phonegap build" app for WP8

Upvotes: 1

Views: 714

Answers (2)

Sithys
Sithys

Reputation: 3793

Ahh, i've just seen your Screenshots!

You have to go into your config.xml and change the value

<preference name="DisallowOverscroll" value="false"/>

to

"true"

instead!

Upvotes: 1

James Croft
James Croft

Reputation: 1680

I've had this issue before when developing HTML5 apps for Windows Phone 8. To fix it, I added the following to your app's CSS file:

body {
    -ms-touch-action:none;
}

This will stop your page being able to move around and remove the bounce effect when you scroll to the edge.

Upvotes: 1

Related Questions