update built libs

This commit is contained in:
Alan Kligman 2013-11-12 13:39:49 -05:00
parent c76fc01a20
commit a4b1341a84
2 changed files with 5 additions and 1 deletions

2
dist/idbfs.js vendored
View File

@ -8305,7 +8305,7 @@ define('src/fs',['require','lodash','when','encoding-indexes','encoding','src/pa
function read_parent_directory_data(error, parentDirectoryNode) {
if(error) {
callback(error);
} else if(!_(parentDirectoryNode).has('data') || !parentDirectoryNode.type == MODE_DIRECTORY) {
} else if(!parentDirectoryNode.type == MODE_DIRECTORY) {
callback(new ENotDirectory('a component of the path prefix is not a directory'));
} else {
read_object(objectStore, parentDirectoryNode.data, get_node_id_from_parent_directory_data);

4
dist/idbfs.min.js vendored Normal file

File diff suppressed because one or more lines are too long