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/08/25 22:25:03 UTC

svn commit: r436987 - in /incubator/xap/trunk/src/xap: session/ClientSession.js taghandling/AbstractTagImpl.js

Author: jmargaris
Date: Fri Aug 25 15:25:02 2006
New Revision: 436987

URL: http://svn.apache.org/viewvc?rev=436987&view=rev
Log:
refactoring

Modified:
    incubator/xap/trunk/src/xap/session/ClientSession.js
    incubator/xap/trunk/src/xap/taghandling/AbstractTagImpl.js

Modified: incubator/xap/trunk/src/xap/session/ClientSession.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/session/ClientSession.js?rev=436987&r1=436986&r2=436987&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/session/ClientSession.js (original)
+++ incubator/xap/trunk/src/xap/session/ClientSession.js Fri Aug 25 15:25:02 2006
@@ -286,12 +286,12 @@
 // if zimbroid, it will have to be found some other way Zimbra will handle:
 	if( toolkitType && toolkitType=="dojo"){
 		parentElementWrapper = parentElement!=null? parentElement : document.body ;
-		handler.getDisplayDomNode = function(){
+		handler.getNodeForChildren = function(){
 			return parentElement ;
 		}
 	} else {
 		parentElementWrapper = new DwtShell( "MainShell", false, null, null, true );
-		handler.getDisplayDomNode = function(){
+		handler.getNodeForChildren = function(){
 			return  parentElementWrapper ;
 		}		
 	}

Modified: incubator/xap/trunk/src/xap/taghandling/AbstractTagImpl.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/taghandling/AbstractTagImpl.js?rev=436987&r1=436986&r2=436987&view=diff
==============================================================================
--- incubator/xap/trunk/src/xap/taghandling/AbstractTagImpl.js (original)
+++ incubator/xap/trunk/src/xap/taghandling/AbstractTagImpl.js Fri Aug 25 15:25:02 2006
@@ -765,11 +765,3 @@
 	this._clientSession = session;
 }
 
-/**
- * Identifier
- */
-xap.taghandling.AbstractTagImpl.prototype.isBridge = function(  ) {
-	return true ;
-}
-
-