First steps on icon drag support.

This commit is contained in:
Paulo Gustavo Veiga
2012-03-07 17:40:10 -03:00
parent 24047e02bb
commit a1f6542264
7 changed files with 105 additions and 36 deletions

View File

@@ -87,6 +87,15 @@ mindplot.model.INodeModel = new Class({
},
getMetadata:function() {
return this.getProperty('metadata');
},
setMetadata:function(json) {
this.putProperty('metadata', json);
},
getImageUrl:function() {
return this.getProperty('imageUrl');
},