Commit 038f33c9 authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix bug 32893

val -> _val
parent 20cb0fec
...@@ -1186,7 +1186,7 @@ cArea3D.prototype.getRange = function () { ...@@ -1186,7 +1186,7 @@ cArea3D.prototype.getRange = function () {
return _val; return _val;
} }
_r[i]._foreachNoEmpty(function (cell) { _r[i]._foreachNoEmpty(function (cell) {
val.push(checkTypeCell(cell)); _val.push(checkTypeCell(cell));
}); });
} }
return _val; return _val;
...@@ -1211,7 +1211,7 @@ cArea3D.prototype.getRange = function () { ...@@ -1211,7 +1211,7 @@ cArea3D.prototype.getRange = function () {
} }
_r[0]._foreachNoEmpty(function (_cell) { _r[0]._foreachNoEmpty(function (_cell) {
if (cell.getID() === _cell.getName()) { if (cell.getID() === _cell.getName()) {
val.push(checkTypeCell(cell)); _val.push(checkTypeCell(cell));
} }
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment