mirror of
https://gitee.com/shuto/cordova-imagePicker.git
synced 2026-05-05 00:00:01 +08:00
17 lines
259 B
JavaScript
17 lines
259 B
JavaScript
/**
|
|
* An Image Picker plugin for Cordova
|
|
*
|
|
* Developed by Wymsee for Sync OnSet
|
|
*/
|
|
|
|
var ImagePicker = function() {
|
|
|
|
};
|
|
|
|
ImagePicker.prototype.getPictures = function() {
|
|
|
|
}
|
|
|
|
cordova.addContstructor(function() {
|
|
window.imagePicker = new ImagePicker();
|
|
}); |