stefano.troia
stefano.troia

Reputation: 23

Disable user zoom in cordova app for windows phone 8

On windows phone my app is zoom-able and if I do a swipe top on the body I see white like on the browser. I already used meta no resizable and user zoom fixed.

Upvotes: 2

Views: 424

Answers (2)

andreszs
andreszs

Reputation: 2956

For anyone else experiencing the same issue:

body{
    touch-action: pan-y; /* disable all actions except vertical scrolling */
}

Upvotes: 1

athom
athom

Reputation: 313

Did you add initial-scale=1, maximum-scale=1, to the viewport tag?

Setting the CSS property: zoom: 1 can maybe fix your issue. Let me know.

Example:

* {
    zoom: 1;
}

Upvotes: 0

Related Questions