CVS has been updated with a fix for those memory leaks introduced as of
version 2.51 ( or 2.52 ). Either update or change this code:

listeners.js

DynObject.prototype.del = function() {
    this._listeners_del();
    this.removeAllEventListeners();
};

should be

DynObject.prototype.del = function() {
    this.removeAllEventListeners();
    this._listeners_del();
};


listeners were not removed because DynLayer no longer existed, then
mouse events were not freed. I've found most of the leaking
mouse-related, hmmm... I'll give it some work. The website I'm
developing is so big that kills any machine after a couple reloads.


_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-dev

Reply via email to