Update of /cvsroot/dynapi/dynapi/src/lib/dynapi/event
In directory usw-pr-cvs1:/tmp/cvs-serv27314/src/lib/dynapi/event
Modified Files:
listeners.js
Log Message:
Secondary inheritance bugfixing
Index: listeners.js
===================================================================
RCS file: /cvsroot/dynapi/dynapi/src/lib/dynapi/event/listeners.js,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** listeners.js 2001/11/05 00:12:44 1.6
--- listeners.js 2001/11/05 16:45:49 1.7
***************
*** 53,57 ****
}
}
! DynObject.prototype.eventListeners = null;
DynObject.prototype._listeners_del = DynObject.prototype.del
DynObject.prototype.del = function() {
--- 53,58 ----
}
}
! //removed to counter inheritance bug (#425789)
! //DynObject.prototype.eventListeners = null;
DynObject.prototype._listeners_del = DynObject.prototype.del
DynObject.prototype.del = function() {
|