You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "jcesarmobile (JIRA)" <ji...@apache.org> on 2018/11/24 22:56:00 UTC

[jira] [Closed] (CB-10373) Cordova camera plugin (navigator.camera.getPicture) add option to pick video is full screen instead of popover on iPad

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

jcesarmobile closed CB-10373.
-----------------------------
    Resolution: Won't Do

Closing as won't do as nobody worked on this and nobody commented neither, so it doesn't look like there is interest.

> 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: cordova-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
(v7.6.3#76005)

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