chore(dom) lRet -> ret

This commit is contained in:
coderaiser 2014-02-11 07:37:57 -05:00
parent 823c8f3930
commit 42f652e258

View file

@ -882,22 +882,22 @@ var CloudCmd, Util, DOM, CloudFunc, Dialog;
* @pCurrentFile
*/
this.getCurrentFile = function() {
var lRet = this.getByClass(CURRENT_FILE);
var ret = this.getByClass(CURRENT_FILE);
return lRet;
return ret;
};
/**
* get current file by name
*/
this.getCurrentFileByName = function(pName) {
var lRet, lPanel, lName;
this.getCurrentFileByName = function(name) {
var ret, panel;
lPanel = DOM.getPanel();
lName = pName + '(' + lPanel.id + ')';
lRet = DOM.getById(lName);
panel = DOM.getPanel();
name = name + '(' + panel.id + ')';
ret = DOM.getById(name);
return lRet;
return ret;
};
/**