From aa2abf7c31aa6dd614a5269d3e5c3790e352e989 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 19 Dec 2014 09:41:11 -0500 Subject: [PATCH] chore(dom) rm " " --- 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 b927a9c0..41b1b090 100644 --- a/lib/client/dom.js +++ b/lib/client/dom.js @@ -1140,7 +1140,7 @@ var CloudCmd, Util, DOM, CloudFunc, Dialog; this.isCurrentFile = function(currentFile) { var ret; - if (currentFile ) + if (currentFile) ret = this.isContainClass(currentFile, CURRENT_FILE); return ret; @@ -1154,7 +1154,7 @@ var CloudCmd, Util, DOM, CloudFunc, Dialog; this.isSelected = function(pSelected) { var ret; - if (pSelected ) + if (pSelected) ret = this.isContainClass(pSelected, SELECTED_FILE); return ret;