Commit 69774a0a authored by Anna.Pavlova's avatar Anna.Pavlova Committed by Alexander.Trofimov

Поправила для EqArray инициализацию

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56088 954022d7-b5bf-4e40-9824-e11837661b57
parent 7a2d333c
......@@ -509,10 +509,8 @@ function CEqArray(props)
this.maxDist = 0;
this.objDist = 0;
CMathMatrix.call(this);
this.init(props);
this.setCtrPrp(props.ctrPrp);
this.setCtrPrp(props.ctrPrp)
}
extend(CEqArray, CMathMatrix);
CEqArray.prototype.init = function(props)
......@@ -544,8 +542,11 @@ CEqArray.prototype.init = function(props)
if(props.objDist !== "undefined" && props.objDist !== null)
this.objDist = props.objDist;
CMathMatrix.call(this, Pr);
CEqArray.superclass.init.call(this, Pr);
//CEqArray.superclass.init.call(this, Pr);
}
CEqArray.prototype.old_init = function(props)
{
......
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