jellyfish-web/dashboard-ui/thirdparty/cordova/android/filesystem.js

10 lines
161 B
JavaScript
Raw Normal View History

2015-05-29 19:51:33 -04:00
(function () {
window.FileSystem = {
fileExists: function (path) {
2015-05-30 10:32:18 -04:00
return NativeFileSystem.fileExists(path);
2015-05-29 19:51:33 -04:00
}
};
})();