jellyfin-web/dashboard-ui/thirdparty/cordova/filesystem.js
2015-06-10 00:01:14 -04:00

14 lines
233 B
JavaScript

(function () {
window.FileSystemBridge = {
fileExists: function (path) {
return false;
},
translateFilePath: function (path) {
return 'file://' + path;
}
};
})();