Socket
Socket
Sign inDemoInstall

cordova-plugin-mz-image-picker

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cordova-plugin-mz-image-picker - npm Package Compare versions

Comparing version 1.2.2 to 1.2.3

2

package.json
{
"name": "cordova-plugin-mz-image-picker",
"version": "1.2.2",
"version": "1.2.3",
"description": "Cordova ImagePicker Plugin",

@@ -5,0 +5,0 @@ "cordova": {

@@ -1,9 +0,27 @@

# forked from giantss/cordova-plugin-ImagePicker base on 1.2.3
cordova-imagePicker
===================
forked from giantss/cordova-plugin-ImagePicker
# 修复Android10 闪退问题
support android 10
# 安装
···
## Installing the plugin
```
cordova plugin add cordova-plugin-mz-imagepicker
···
```
## Using the plugin
The plugin creates the object `window.imagePicker` with the method `getPictures(success, fail, options)`
Example - Get Full Size Images (all default options):
```javascript
window.imagePicker.getPictures(
function(results) {
for (var i = 0; i < results.length; i++) {
console.log('Image URI: ' + results[i]);
}
}, function (error) {
console.log('Error: ' + error);
}
);

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc