You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by jk...@apache.org on 2006/08/13 18:12:58 UTC

svn commit: r431188 - /tapestry/tapestry4/trunk/tapestry-framework/src/js/tapestry/core.js

Author: jkuhnert
Date: Sun Aug 13 09:12:54 2006
New Revision: 431188

URL: http://svn.apache.org/viewvc?rev=431188&view=rev
Log:
Added dojo.event.browser.clean(node) calls to prevent ie memory leaks

Modified:
    tapestry/tapestry4/trunk/tapestry-framework/src/js/tapestry/core.js

Modified: tapestry/tapestry4/trunk/tapestry-framework/src/js/tapestry/core.js
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/tapestry/core.js?rev=431188&r1=431187&r2=431188&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/tapestry/core.js (original)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/tapestry/core.js Sun Aug 13 09:12:54 2006
@@ -138,6 +138,8 @@
         	}
     	}
     	
+    	dojo.event.browser.clean(node); // prevent mem leaks in ie
+    	
     	if (djConfig["isDebug"]) {
     		var content=tapestry.html.getContentAsString(element);
     		dojo.log.debug("Received element content for id <" + id + "> of:\n" + content);