mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-04-24 03:00:11 -04:00
8 lines
187 B
JavaScript
8 lines
187 B
JavaScript
|
|
window.ExternalFileUtil = {
|
|
|
|
openWith: function ( path, uti, success, fail) {
|
|
return cordova.exec(success, fail, "ExternalFileUtil", "openWith", [path, uti]);
|
|
}
|
|
};
|