From 1beeafb6e8b2296d7748d545128686bf8296bbb7 Mon Sep 17 00:00:00 2001 From: Vladimir Kotikov Date: Tue, 23 Aug 2016 16:14:59 +0300 Subject: [PATCH] CB-10067 Update PictureSourceType JSDoc to reflect README update --- README.md | 4 ++-- www/CameraConstants.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4294bd2..fef0049 100644 --- a/README.md +++ b/README.md @@ -303,9 +303,9 @@ change, cropping, etc.) due to implementation specific. | Name | Type | Default | Description | | --- | --- | --- | --- | -| PHOTOLIBRARY | number | 0 | Choose image from picture library (same as SAVEDPHOTOALBUM for Android) | +| PHOTOLIBRARY | number | 0 | Choose image from the device's photo library (same as SAVEDPHOTOALBUM for Android) | | CAMERA | number | 1 | Take picture from camera | -| SAVEDPHOTOALBUM | number | 2 | Choose image from picture library (same as PHOTOLIBRARY for Android) | +| SAVEDPHOTOALBUM | number | 2 | Choose image only from the device's Camera Roll album (same as PHOTOLIBRARY for Android) | diff --git a/www/CameraConstants.js b/www/CameraConstants.js index c13dba3..9974c15 100644 --- a/www/CameraConstants.js +++ b/www/CameraConstants.js @@ -71,11 +71,11 @@ module.exports = { * @enum {number} */ PictureSourceType:{ - /** Choose image from picture library (same as SAVEDPHOTOALBUM for Android) */ + /** Choose image from the device's photo library (same as SAVEDPHOTOALBUM for Android) */ PHOTOLIBRARY : 0, /** Take picture from camera */ CAMERA : 1, - /** Choose image from picture library (same as PHOTOLIBRARY for Android) */ + /** Choose image only from the device's Camera Roll album (same as PHOTOLIBRARY for Android) */ SAVEDPHOTOALBUM : 2 }, /**