From ba08ab62526d2c765f4419c78929297c04f8b4cb Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 19 Jun 2013 11:09:08 +0000 Subject: [PATCH] fix(DOM) this.promptNewFile -> Cmd.promptNewFile --- lib/client/dom.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/client/dom.js b/lib/client/dom.js index 73b6ca2b..e2e4dacf 100644 --- a/lib/client/dom.js +++ b/lib/client/dom.js @@ -1012,7 +1012,7 @@ var CloudCmd, Util, DOM, CloudFunc; * @pCurrentFile */ this.promptNewDir = function(){ - this.promptNewFile('directory', '?dir'); + Cmd.promptNewFile('directory', '?dir'); }; /** @@ -1868,4 +1868,4 @@ var CloudCmd, Util, DOM, CloudFunc; DOM = new DOMFunc(); -})(Util); \ No newline at end of file +})(Util);