Commit 1194b142 authored by Boris Kocherov's avatar Boris Kocherov

cube functions calculations fixed.

parent 9fbefa0a
......@@ -276,9 +276,8 @@
}
mdx_array.forEach(function (element) {
if (element instanceof cArea || element instanceof cArea3D) {
element.foreach(cellForge);
} else if (element instanceof cRef || element instanceof cRef3D) {
if (element instanceof cArea || element instanceof cArea3D ||
element instanceof cRef || element instanceof cRef3D) {
element.getRange().getCells().forEach(cellForge);
} else {
stringForge(element);
......
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