mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-01-14 08:57:53 -05: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]);
|
|
}
|
|
};
|