Updated documentation and removed returnsOriginalImage parameter, setting that always to true for now

This commit is contained in:
CSullivan102
2014-01-10 19:59:23 -05:00
parent a30d6ea81f
commit df4c2247bc
3 changed files with 46 additions and 5 deletions
-2
View File
@@ -13,7 +13,6 @@ var ImagePicker = function() {
* success - success callback
* fail - error callback
* options
* .singleSelection
* .maximumImagesCount
* .maxWidth
* .maxHeight
@@ -25,7 +24,6 @@ ImagePicker.prototype.getPictures = function(success, fail, options) {
var params = {
maximumImagesCount: options.maximumImagesCount ? options.maximumImagesCount : 15,
returnsOriginalImage: options.returnsOriginalImage ? options.returnsOriginalImage : 1,
width: options.width ? options.width : 0,
height: options.height ? options.height : 0,
quality: options.quality ? options.quality : 100