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/11 19:30:13 UTC

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

Author: mturyn
Date: Fri Aug 11 12:30:12 2006
New Revision: 430869

URL: http://svn.apache.org/viewvc?rev=430869&view=rev
Log:
Added the getDisplayDomNode(0 method our bridges need.

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=430869&r1=430868&r2=430869&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/bridges/basic/DomNodeBridge.js (original)
+++ incubator/xap/trunk/src/xap/bridges/basic/DomNodeBridge.js Fri Aug 11 12:30:12 2006
@@ -100,5 +100,10 @@
 		}
 }
 	
-
+/**
+ *  Since this just wrappers a dom node peer, this function is simple here---return the peer.
+ **/
+ xap.bridges.basic.DomNodeBridge.prototype.getRootDomNode = function(){
+ 	return this.getPeer() ;
+ }