Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id E7689200B6D for ; Tue, 23 Aug 2016 14:26:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id E604E160AAD; Tue, 23 Aug 2016 12:26:22 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 387FE160AA5 for ; Tue, 23 Aug 2016 14:26:22 +0200 (CEST) Received: (qmail 12476 invoked by uid 500); 23 Aug 2016 12:26:21 -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 12465 invoked by uid 99); 23 Aug 2016 12:26:21 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Aug 2016 12:26:21 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id B11A52C0152 for ; Tue, 23 Aug 2016 12:26:20 +0000 (UTC) Date: Tue, 23 Aug 2016 12:26:20 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@cordova.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CB-11295) Cordova app navigates to home screen when fetching image from PhotoLibrary MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 23 Aug 2016 12:26:23 -0000 [ https://issues.apache.org/jira/browse/CB-11295?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15432702#comment-15432702 ] ASF GitHub Bot commented on CB-11295: ------------------------------------- GitHub user vladimir-kotikov opened a pull request: https://github.com/apache/cordova-plugin-camera/pull/233 CB-11295 Add WP8.1 quirk when choosing image from photoalbum ### Platforms affected Windows (Windows Phone 8.1) ### What does this PR do? Updates plugin's docs to reflect WP8.1 quirk when calling `camera.getPicture` from location, different than app's start page ### What testing has been done on this change? Not required ### Checklist - [x] [ICLA](http://www.apache.org/licenses/icla.txt) has been signed and submitted to secretary@apache.org. - [x] [Reported an issue](http://cordova.apache.org/contribute/issues.html) in the JIRA database - [x] Commit message follows the format: "CB-3232: (android) Fix bug with resolving file paths", where CB-xxxx is the JIRA ID & "android" is the platform affected. - [x] Added automated test coverage as appropriate for this change. (not required) You can merge this pull request into a Git repository by running: $ git pull https://github.com/vladimir-kotikov/cordova-plugin-camera CB-11295 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/cordova-plugin-camera/pull/233.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #233 ---- commit 11e300a42ddb72a7228a0fcecf1477e5ac66b197 Author: Vladimir Kotikov Date: 2016-08-23T12:08:59Z CB-11295 Add WP8.1 quirk when choosing image from photoalbum ---- > Cordova app navigates to home screen when fetching image from PhotoLibrary > -------------------------------------------------------------------------- > > Key: CB-11295 > URL: https://issues.apache.org/jira/browse/CB-11295 > Project: Apache Cordova > Issue Type: Bug > Components: Plugin Camera > Reporter: Apoorv Saxena > Labels: camera, cordova-6.0.0, windows-universal > > **Use Case**: Choose image from Gallery and execute callbacks > **Issue**: Redirection to Home screen of the app after image selection from Gallery. > Getting image from Camera works: > {noformat} > navigator.camera.getPicture(function() { > console.log('success'); > },function() { > console.log('failure'); > } , { > destinationType: Camera.DestinationType.DATA_URL > }); > {noformat} > Choosing image from Gallery redirects to the homescreen > {noformat} > navigator.camera.getPicture(function() { > console.log('success'); > },function() { > console.log('failure'); > } , { > destinationType: navigator.camera.DestinationType.FILE_URI, > sourceType: navigator.camera.PictureSourceType.SAVEDPHOTOALBUM > }); > {noformat} > The code is fairly simple and is mentioned at many places to give an example of how to choose image from Gallery. This code doesn't work on any screen other than the home screen of App. Also, no errors are reported before redirection. > The following code also results in redirection to the homescreen after image selection. > {noformat} > > {noformat} > Configuration: > Device: Windows Lumia 535 > Device OS Version: 8.1 > Cordova: 6.1.1 > Cordova plugin camera: 2.2.0 -- 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