[ 
https://issues.apache.org/jira/browse/CB-10373?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

jcesarmobile updated CB-10373:
------------------------------
    Affects Version/s:     (was: 5.3.3)
          Component/s: Plugin Camera
                       iOS
              Summary: Cordova camera plugin (navigator.camera.getPicture) add 
option to pick video is full screen instead of popover on iPad  (was: Cordova 
plugin (navigator.camera.getPicture) to pick video is not full screen on iPad)

> Cordova camera plugin (navigator.camera.getPicture) add option to pick video 
> is full screen instead of popover on iPad
> ----------------------------------------------------------------------------------------------------------------------
>
>                 Key: CB-10373
>                 URL: https://issues.apache.org/jira/browse/CB-10373
>             Project: Apache Cordova
>          Issue Type: Improvement
>          Components: iOS, Plugin Camera
>            Reporter: Vasyl Kovalisko
>            Priority: Minor
>
> I have an issue on iPad when using navigator.camera.getPicture(...). I am 
> trying to pick Video from library. I found that on iPad my viewer to pick 
> video files is very small. 
> How can I make this view to be full screen?
> This is my code to execute picking video from gallery:
> function () {
>   var defer = $q.defer();
>   navigator.camera.getPicture(
>     function (mediaFiles) {
>       defer.resolve(mediaFiles);
>     },
>     function (errorData) {
>       defer.reject(errorData);
>     },
>     {
>       quality: 100,
>       allowEdit: false,
>       mediaType: Camera.MediaType.VIDEO,
>       sourceType: Camera.PictureSourceType.PHOTOLIBRARY,
>       destinationType: Camera.DestinationType.FILE_URI
>     });
>     return defer.promise;
> }



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to