br.com.plugins.filechoosernew
Version:
Plugin para escolher arquivos dos diret�rios do smartphone
15 lines (12 loc) • 408 B
JavaScript
var FileChooser = function () {};
FileChooser.prototype.open= function (type,success, failure) {
cordova.exec(success, failure, "FileChooser", "open", [type]);
};
FileChooser.install = function() {
if (!window.plugins) {
window.plugins = {}
}
window.plugins.fileChooser = new FileChooser();
return window.plugins.fileChooser;
};
cordova.addConstructor(FileChooser.install);