mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 06:07:57 +01:00
fixing for each statment
This commit is contained in:
parent
96e66bf826
commit
85804b74a4
@ -1109,8 +1109,9 @@ mindplot.MindmapDesigner.prototype._getSelectedNodes = function()
|
||||
|
||||
mindplot.MindmapDesigner.prototype.getSelectedRelationshipLines = function(){
|
||||
var result = new Array();
|
||||
for each (var relationship in this._relationships)
|
||||
for (var id in this._relationships)
|
||||
{
|
||||
var relationship = this._relationships[id];
|
||||
if (relationship.isOnFocus())
|
||||
{
|
||||
result.push(relationship);
|
||||
|
Loading…
Reference in New Issue
Block a user