Reputation: 21
Ionic Framework, ionicframework.com, how do I force phones to display screen orientation only "portrait", and tablets to only display screen orientation only "landscape"?
Upvotes: 2
Views: 172
Reputation: 1541
Add the preference <preference name="orientation" value="portrait" />
in config.xml seems to be the way to go, works with Cordova 3.4.1 and later.
Using screen.orientation directly in javascript in the app is more flexible, but doesn't seem to have wide support on the phones yet.
Upvotes: 3