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