From 0ee4af54116f596d8d9925aa0395f04d7fce5460 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Tue, 4 Sep 2012 08:21:23 -0400 Subject: [PATCH] fixed bug with keyboard not responding when go deeper in file tree --- ChangeLog | 3 +++ client.js | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3cf5cbc3..3507195d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/client.js b/client.js index 9d586b55..bdba95fd 100644 --- a/client.js +++ b/client.js @@ -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(); } };