[gatein-commits] gatein SVN: r5383 - portal/branches/branch-GTNPORTAL-1700/web/eXoResources/src/main/webapp/javascript/eXo/portal.

do-not-reply at jboss.org do-not-reply at jboss.org
Tue Nov 30 05:56:16 EST 2010


Author: ndkhoiits
Date: 2010-11-30 05:56:15 -0500 (Tue, 30 Nov 2010)
New Revision: 5383

Modified:
   portal/branches/branch-GTNPORTAL-1700/web/eXoResources/src/main/webapp/javascript/eXo/portal/UIPortal.js
Log:
GTNPORTAL-1690 Have problem when trying to move the page body outside a UITableColumnContainer

Modified: portal/branches/branch-GTNPORTAL-1700/web/eXoResources/src/main/webapp/javascript/eXo/portal/UIPortal.js
===================================================================
--- portal/branches/branch-GTNPORTAL-1700/web/eXoResources/src/main/webapp/javascript/eXo/portal/UIPortal.js	2010-11-30 10:03:04 UTC (rev 5382)
+++ portal/branches/branch-GTNPORTAL-1700/web/eXoResources/src/main/webapp/javascript/eXo/portal/UIPortal.js	2010-11-30 10:56:15 UTC (rev 5383)
@@ -516,10 +516,10 @@
   var parent;
   if (parent = DOMUtil.findAncestorByClass(element, "UIPortlet")) {
     return parent;
+  } else if (parent = DOMUtil.findAncestorByClass(element, "UIPageBody")) {
+     return parent;
   } else if (parent = DOMUtil.findAncestorByClass(element, "UIContainer")) {
     return parent;
-  } else if (parent = DOMUtil.findAncestorByClass(element, "UIPageBody")) {
-    return parent;
   } else if (parent = DOMUtil.findAncestorByClass(element, "UIPortal")) {
     return parent;
   }



More information about the gatein-commits mailing list