From cb7212e7d24603a55566c07f87c4fb747eae15b6 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Tue, 21 Jul 2015 11:46:00 -0400 Subject: [PATCH] fix(listeners) onDblClick: add "/" --- lib/client/listeners.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/client/listeners.js b/lib/client/listeners.js index 2af5b24e..92cb75be 100644 --- a/lib/client/listeners.js +++ b/lib/client/listeners.js @@ -169,7 +169,7 @@ var Util, DOM, CloudFunc, CloudCmd; if (isDir) { CloudCmd.loadDir({ - path: path + '/' + path: path === '/' ? '/' : path + '/' }); event.preventDefault();