Commit b60e005a authored by Dmitry.Shahtanov's avatar Dmitry.Shahtanov Committed by Alexander.Trofimov

fix: Bug 20466 - Cannot set property 'uo' of null при вводе в формулу фигурных скобок

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49806 954022d7-b5bf-4e40-9824-e11837661b57
parent a8f1b89e
......@@ -2200,6 +2200,8 @@ cArray.prototype.toString = function () {
return "{" + ret + "}";
};
cArray.prototype.isValidArray = function () {
if( this.countElement < 1 )
return false;
for ( var i = 0; i < this.rowCount - 1; i++ ) {
if ( this.countElementInRow[i] - this.countElementInRow[i + 1] == 0 )
continue;
......
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