This commit is contained in:
Alan K 2014-08-20 15:57:09 -04:00
parent cf2469f270
commit 27a5e6ee26
4 changed files with 10 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{
"name": "filer",
"version": "0.0.25",
"version": "0.0.26",
"main": "dist/filer.js",
"devDependencies": {
"mocha": "1.17.1",

2
dist/filer.js vendored
View File

@ -13347,6 +13347,8 @@ function read_directory(context, path, callback) {
function read_directory_data(error, result) {
if(error) {
callback(error);
} else if(result.mode !== MODE_DIRECTORY) {
callback(new Errors.ENOTDIR(null, path));
} else {
directoryNode = result;
context.getObject(directoryNode.data, handle_directory_data);

12
dist/filer.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -11,7 +11,7 @@
"idb",
"websql"
],
"version": "0.0.25",
"version": "0.0.26",
"author": "Alan K <ack@modeswitch.org> (http://blog.modeswitch.org)",
"homepage": "http://js-platform.github.io/filer",
"bugs": "https://github.com/js-platform/filer/issues",