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

11 lines
134 B
JavaScript
Raw Normal View History

2015-05-29 16:51:33 -07:00
(function () {
window.FileSystem = {
fileExists: function (path) {
return false;
}
};
})();