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 mt...@apache.org on 2006/08/21 02:59:06 UTC

svn commit: r433127 - /incubator/xap/trunk/src/xap/bridges/basic/DomNodeBridge.js

Author: mturyn
Date: Sun Aug 20 19:59:05 2006
New Revision: 433127

URL: http://svn.apache.org/viewvc?rev=433127&view=rev
Log:
Fixed default return for container node (getDisplayNode).

Modified:
    incubator/xap/trunk/src/xap/bridges/basic/DomNodeBridge.js

Modified: incubator/xap/trunk/src/xap/bridges/basic/DomNodeBridge.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/bridges/basic/DomNodeBridge.js?rev=433127&r1=433126&r2=433127&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/bridges/basic/DomNodeBridge.js (original)
+++ incubator/xap/trunk/src/xap/bridges/basic/DomNodeBridge.js Sun Aug 20 19:59:05 2006
@@ -110,6 +110,14 @@
 xap.bridges.basic.DomNodeBridge.prototype.getRootDomNode = function(){
 	return this.getPeer() ;
 }
+
+/**
+ *  Since this just wraps a dom node peer, this 
+ *  function is simple here---return the peer.
+**/
+xap.bridges.basic.DomNodeBridge.prototype.getDisplayDomNode = function(){
+	return this.getPeer() ;
+}
  
 
 /**