jellyfin-web/dashboard-ui/thirdparty/filesystem.js

13 lines
232 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) {
return false;
2015-05-31 11:22:51 -07:00
},
2015-05-29 16:51:33 -07:00
2015-05-31 11:22:51 -07:00
translateFilePath: function (path) {
2015-06-03 08:26:39 -07:00
return 'file://' + path;
2015-05-31 11:22:51 -07:00
}
2015-05-29 16:51:33 -07:00
};
})();