From f3e38f6613c3c1ecfe5871fd16acc9aa0961a276 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 30 Jan 2014 11:16:34 -0500 Subject: [PATCH] fix(dom) getNotCurrentDirPath: add this --- lib/client/dom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/client/dom.js b/lib/client/dom.js index 68d22187..e6fec1a0 100644 --- a/lib/client/dom.js +++ b/lib/client/dom.js @@ -884,7 +884,7 @@ var CloudCmd, Util, DOM, CloudFunc, Dialog; */ this.getNotCurrentDirPath = function() { var panel = this.getPanel(true), - path = getCurrentDirPath(panel); + path = this.getCurrentDirPath(panel); return path; };