diff --git a/ChangeLog b/ChangeLog index 5da442dc..f0c48918 100644 --- a/ChangeLog +++ b/ChangeLog @@ -75,6 +75,8 @@ listing in json from menu. * Util object moved from client.js to modules dom.js and util.js. +* Fixed bug with navigation thrue path panel. + 2012.10.01, Version 0.1.7 diff --git a/client.js b/client.js index 23dbfa90..d21bdac7 100644 --- a/client.js +++ b/client.js @@ -199,7 +199,7 @@ CloudClient._loadDir = function(pLink,pNeedRefresh){ * для которого нужно * выполнить загрузку */ - return function(){ + return function(pEvent){ var lRet = true; /* показываем гиф загрузки возле пути папки сверху*/ /* ctrl+r нажата? */ @@ -240,7 +240,10 @@ CloudClient._loadDir = function(pLink,pNeedRefresh){ * а грузить всё ajax'ом, * возвращаем false на событие * onclick - */ + */ + + pEvent.returnValue = false; + return lRet; }; };