- Finish remove icon.

This commit is contained in:
Paulo Veiga
2011-08-24 01:06:32 -03:00
parent 74f69fd5e4
commit 2c08e09ce0
5 changed files with 89 additions and 40 deletions

View File

@@ -44,9 +44,13 @@ mindplot.Icon = new Class({
return this._image.getPosition();
},
setSize : function(x,y) {
return this._image.setSize(x,y);
setSize : function(x, y) {
return this._image.setSize(x, y);
},
addEvent : function(type, fnc) {
this._image.addEvent(type, fnc);
}
});