From 033b4c8e3dfb3b2bd5caa0a59572e5022849f23b Mon Sep 17 00:00:00 2001 From: coderaiser Date: Sun, 15 Nov 2015 06:26:52 -0500 Subject: [PATCH] fix(dom) deleteSelected: this -> DOM --- 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 febfeb8f..b4009c1d 100644 --- a/lib/client/dom.js +++ b/lib/client/dom.js @@ -1388,7 +1388,7 @@ var CloudCmd, Util, DOM, CloudFunc; for (i = 0; i < n; i++) { current = selected[i]; - this.deleteCurrent(current); + DOM.deleteCurrent(current); } }