- Fix Link node

- Finish local storage support
This commit is contained in:
Paulo Veiga
2011-11-30 00:32:24 -03:00
parent 334206ab19
commit bc87d0f311
5 changed files with 138 additions and 124 deletions

View File

@@ -313,7 +313,7 @@ mindplot.Topic = new Class({
//Links
var links = model.getLinks();
for (var i = 0; i < links.length; i++) {
this._link = new mindplot.LinkIcon(links[i], this, designer);
this._link = new mindplot.LinkIcon(this,links[i]);
result.addIcon(this._link);
}