Fix create graph by matrix.

This commit is contained in:
Unick Soft 2020-05-03 21:46:33 +02:00
parent 4fbe526813
commit 583cb024a1

View File

@ -17,7 +17,11 @@ function BaseEdge(vertex1, vertex2, isDirect, weight, upText)
this.useWeight = false;
this.id = 0;
this.model = new EdgeModel();
this.upText = upText;
if (upText === undefined)
this.upText = "";
else
this.upText = upText;
if (weight !== undefined)
this.SetWeight(weight);