#2 Support for iCloud photos on iOS - modifications

This commit is contained in:
EddyVerbruggen
2015-10-29 22:04:55 +01:00
parent b88f7107f7
commit 3900d47c4e
7 changed files with 245 additions and 157 deletions
+2 -2
View File
@@ -51,8 +51,8 @@ ImagePicker.prototype.getPictures = function(success, fail, options) {
height: options.height ? options.height : 0,
quality: options.quality ? options.quality : 100,
allow_video: options.allow_video ? options.allow_video : false,
title: options.title ? options.title : 'Custom Title',
message: options.message ? options.message : 'Custom helper message',
title: options.title ? options.title : 'Select an Album', // the default is the message of the old plugin impl
message: options.message ? options.message : null, // the old plugin impl didn't have it, so passing null by default
outputType: options.outputType ? options.outputType : this.OutputType.FILE_URI
};