mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
fixed bug with keyboard not responding when go deeper in file tree
This commit is contained in:
parent
ad4bddab5d
commit
0ee4af5411
2 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue