Rename Event listener

Remove hacks
This commit is contained in:
Paulo Veiga
2011-08-21 12:42:00 -03:00
parent 0e854c8942
commit ad13c296ad
42 changed files with 276 additions and 2944 deletions

View File

@@ -87,12 +87,12 @@ mindplot.Workspace = new Class({
}
},
addEventListener: function(type, listener) {
this._workspace.addEventListener(type, listener);
addEvent: function(type, listener) {
this._workspace.addEvent(type, listener);
},
removeEventListener: function(type, listener) {
this._workspace.removeEventListener(type, listener);
removeEvent: function(type, listener) {
this._workspace.removeEvent(type, listener);
},
getSize: function() {