You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2006/11/02 18:38:33 UTC

svn commit: r470440 - /myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js

Author: weber
Date: Thu Nov  2 09:38:33 2006
New Revision: 470440

URL: http://svn.apache.org/viewvc?view=rev&rev=470440
Log:
working on TOBAGO-167 (Enable rendering popups by ajax request)
fix element ids

Modified:
    myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js

Modified: myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js?view=diff&rev=470440&r1=470439&r2=470440
==============================================================================
--- myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js (original)
+++ myfaces/tobago/trunk/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js Thu Nov  2 09:38:33 2006
@@ -759,11 +759,11 @@
       if (div) {
         div.parentNode.removeChild(div);
       }
-      div = Tobago.element(id + "content");
+      div = Tobago.element(id + this.SUB_COMPONENT_SEP + "content");
       if (div) {
         div.parentNode.removeChild(div);
       }
-      div = Tobago.element(id + "iframe");
+      div = Tobago.element(id + this.SUB_COMPONENT_SEP + "iframe");
       if (div) {
         div.parentNode.removeChild(div);
       }