jellyfin-web/dashboard-ui/cordova/android/filesystem.js

14 lines
297 B
JavaScript
Raw Normal View History

2015-05-29 16:51:33 -07:00
(function () {
2015-06-09 21:01:14 -07:00
window.FileSystemBridge = {
2015-05-29 16:51:33 -07:00
fileExists: function (path) {
2015-05-30 07:32:18 -07:00
return NativeFileSystem.fileExists(path);
2015-05-31 11:22:51 -07:00
},
translateFilePath: function (path) {
2015-06-03 08:26:39 -07:00
return 'file://' + NativeFileSystem.translateFilePath(path);
2015-05-29 16:51:33 -07:00
}
};
})();