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

Shazron Abdullah updated CB-10373:
----------------------------------
    Environment: iOS
    Component/s:     (was: iOS)

> 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: Plugin Camera
>         Environment: iOS
>            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.15#6346)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org
For additional commands, e-mail: issues-h...@cordova.apache.org

Reply via email to