aboutsummaryrefslogtreecommitdiffstats
path: root/gwtquery-core
diff options
context:
space:
mode:
authorJulien Dramaix <julien.dramaix@gmail.com>2011-03-05 08:09:32 +0000
committerJulien Dramaix <julien.dramaix@gmail.com>2011-03-05 08:09:32 +0000
commit702a479fbb6ea0f8ff347e205ad75afe71e4e464 (patch)
treea023d2a90337a0581356843b8acc1661b608d254 /gwtquery-core
parent47daab2a59c8458c15b77bc13801c173433a484a (diff)
downloadgwtquery-702a479fbb6ea0f8ff347e205ad75afe71e4e464.tar.gz
gwtquery-702a479fbb6ea0f8ff347e205ad75afe71e4e464.zip
header must found inside the element !
Diffstat (limited to 'gwtquery-core')
-rw-r--r--gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/widgets/DisclosurePanelWidgetFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/widgets/DisclosurePanelWidgetFactory.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/widgets/DisclosurePanelWidgetFactory.java
index a3b703c5..6571bcdc 100644
--- a/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/widgets/DisclosurePanelWidgetFactory.java
+++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/widgets/DisclosurePanelWidgetFactory.java
@@ -68,7 +68,7 @@ public class DisclosurePanelWidgetFactory implements
if (options.getHeaderTitle() != null){
headerValue = options.getHeaderTitle();
}else{
- headerValue = $(options.getHeaderSelector()).first().remove().text();
+ headerValue = $(options.getHeaderSelector(), e).first().remove().text();
}
DisclosurePanel disclosurePanel = widget.getOriginalWidget();