Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've recently upgraded to Cordova 2.3.0 and have added the InAppBrowser to my application (in place of the ChildBrowser plugin). I would like the InAppBrowser to support pinch zooming, but I cannot get this to work. Does anyone know if this is currently supported, and if so, how can I enable it?

share|improve this question
I am looking as well for this fix. No successe so far :( – AlexC Jan 14 at 15:38

1 Answer

up vote 4 down vote accepted

This feature is not currently available in Phonegap/Cordova 2.3. It is due to be added (among others) in Phonegap/Cordova 2.4:

https://issues.apache.org/jira/browse/CB-2071

Edit:

I can confirm that this has now been implemented in 2.4.0. Enabling the pinch zoom can be done as follows:

window.open(url, '_blank', 'EnableViewPortScale=yes');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.