You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by jm...@apache.org on 2006/11/03 23:36:20 UTC

svn commit: r471056 - /incubator/xap/trunk/src/xap/bridges/dojo/DojoWidgetBridge.js

Author: jmargaris
Date: Fri Nov  3 15:36:19 2006
New Revision: 471056

URL: http://svn.apache.org/viewvc?view=rev&rev=471056
Log:
Minor bug fix for xinclude children giving an error

Modified:
    incubator/xap/trunk/src/xap/bridges/dojo/DojoWidgetBridge.js

Modified: incubator/xap/trunk/src/xap/bridges/dojo/DojoWidgetBridge.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/bridges/dojo/DojoWidgetBridge.js?view=diff&rev=471056&r1=471055&r2=471056
==============================================================================
--- incubator/xap/trunk/src/xap/bridges/dojo/DojoWidgetBridge.js (original)
+++ incubator/xap/trunk/src/xap/bridges/dojo/DojoWidgetBridge.js Fri Nov  3 15:36:19 2006
@@ -178,7 +178,8 @@
 		
 	}
 	else{
-		if (!childHandler.getRootDomNode()){
+		
+		if (!childHandler.getRootDomNode || !childHandler.getRootDomNode()){
 			return null;
 		}
 		childPeer = new xap.widgets.dojo.HtmlWrapper();