Finish Notes Support...

This commit is contained in:
Paulo Veiga
2011-10-07 00:21:49 -03:00
parent 1f02d51434
commit 7194269826
18 changed files with 422 additions and 136 deletions

View File

@@ -51,7 +51,7 @@ mindplot.IconGroup = new Class({
this._resize(this._icons.length);
},
addIcon : function(icon) {
addIcon : function(icon, remove) {
$defined(icon, "icon is not defined");
icon.setGroup(this);
@@ -65,7 +65,9 @@ mindplot.IconGroup = new Class({
this._group.appendChild(imageShape);
// Register event for the group ..
this._removeTip.decorate(this._topicId, icon);
if (remove) {
this._removeTip.decorate(this._topicId, icon);
}
},
_findIconFromUrl : function(url) {