fixed bug with navigation thrue path panel

This commit is contained in:
coderaiser 2012-11-09 03:53:17 -05:00
parent 68a0a1f849
commit 4709f86d60
2 changed files with 7 additions and 2 deletions

View file

@ -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

View file

@ -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;
};
};