fixed bug with keyboard not responding when go deeper in file tree

This commit is contained in:
coderaiser 2012-09-04 08:21:23 -04:00
parent ad4bddab5d
commit 0ee4af5411
2 changed files with 5 additions and 1 deletions

View file

@ -16,6 +16,9 @@ loaded any time by any extension.
* Fixed bug with getByClass IE version.
* Fixed bug with keyboard not responding when go deeper
in file tree.
2012.08.24, Version 0.1.6

View file

@ -950,7 +950,7 @@ CloudClient._setCurrent=(function(){
* in other case
* double click event happend
*/
if(Util.isCurrentFile(lParent))
if(Util.getCurrentFile() === lParent)
CloudClient._editFileName(lParent);
},400);
}
@ -1323,6 +1323,7 @@ CloudClient._createFileTable = function(pElem, pJSON)
break;
}
Util.setCurrentFile(lCurrent);
//lCurrent.parentElement.focus();
}
};