Commit c9506389 authored by Alexander.Trofimov's avatar Alexander.Trofimov

unused arg -> null

parent c6ff0b8b
...@@ -5025,7 +5025,7 @@ parserFormula.prototype.parse = function(local, digitDelim) { ...@@ -5025,7 +5025,7 @@ parserFormula.prototype.parse = function(local, digitDelim) {
elemArr.push(_tmp); elemArr.push(_tmp);
} }
} else if (currentElement.type === cElementType.name || currentElement.type === cElementType.name3D) { } else if (currentElement.type === cElementType.name || currentElement.type === cElementType.name3D) {
elemArr.push(currentElement.Calculate(arg, opt_bbox)); elemArr.push(currentElement.Calculate(null, opt_bbox));
} else if (currentElement.type === cElementType.table) { } else if (currentElement.type === cElementType.table) {
elemArr.push(currentElement.toRef(opt_bbox)); elemArr.push(currentElement.toRef(opt_bbox));
} else if (opt_offset) { } else if (opt_offset) {
......
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