1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/thirdparty/cordova/android/filesystem.js

14 lines
297 B
JavaScript
Raw Normal View History

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