Return-Path: X-Original-To: apmail-cordova-issues-archive@minotaur.apache.org Delivered-To: apmail-cordova-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 53B6018DAE for ; Mon, 18 Jan 2016 15:35:45 +0000 (UTC) Received: (qmail 44092 invoked by uid 500); 18 Jan 2016 15:35:40 -0000 Delivered-To: apmail-cordova-issues-archive@cordova.apache.org Received: (qmail 44064 invoked by uid 500); 18 Jan 2016 15:35:40 -0000 Mailing-List: contact issues-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@cordova.apache.org Received: (qmail 44018 invoked by uid 99); 18 Jan 2016 15:35:40 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Jan 2016 15:35:40 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id CF85C2C1F5C for ; Mon, 18 Jan 2016 15:35:39 +0000 (UTC) Date: Mon, 18 Jan 2016 15:35:39 +0000 (UTC) From: "jcesarmobile (JIRA)" To: issues@cordova.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (CB-10373) Cordova plugin (navigator.camera.getPicture) to pick video is not full screen on iPad MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CB-10373?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] jcesarmobile updated CB-10373: ------------------------------ Priority: Minor (was: Critical) > Cordova plugin (navigator.camera.getPicture) to pick video is not full screen on iPad > ------------------------------------------------------------------------------------- > > Key: CB-10373 > URL: https://issues.apache.org/jira/browse/CB-10373 > Project: Apache Cordova > Issue Type: Improvement > Affects Versions: 5.3.3 > 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: issues-unsubscribe@cordova.apache.org For additional commands, e-mail: issues-help@cordova.apache.org