Severa lfixed.

This commit is contained in:
Paulo Veiga
2011-09-04 21:32:29 -03:00
parent dbb2b2d0c9
commit 0e21aad802
13 changed files with 85 additions and 65 deletions

View File

@@ -20,16 +20,16 @@ mindplot.model.NoteModel = new Class({
initialize : function(text, topic) {
$assert(text != null, 'note text can not be null');
$assert(topic, 'mindmap can not be null');
this._text = text;
this._textShape = text;
this._topic = topic;
},
getText:function() {
return this._text;
return this._textShape;
},
setText : function(text) {
this._text = text;
this._textShape = text;
},
getTopic : function() {