summaryrefslogtreecommitdiffstats
path: root/install/ui/details.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/details.js')
-rw-r--r--install/ui/details.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/install/ui/details.js b/install/ui/details.js
index 80e7bd9e6..237de6024 100644
--- a/install/ui/details.js
+++ b/install/ui/details.js
@@ -382,7 +382,6 @@ IPA.details_facet = function(spec) {
var section = sections[i];
that.toggle(section, true);
}
-
return false;
}
}).appendTo(that.controls);
@@ -401,7 +400,6 @@ IPA.details_facet = function(spec) {
var section = sections[i];
that.toggle(section, false);
}
-
return false;
}
}).appendTo(that.controls);
@@ -447,8 +445,12 @@ IPA.details_facet = function(spec) {
details.append('<hr/>');
}
+
+
+ that.resize();
};
+
that.setup = function(container) {
that.facet_setup(container);
@@ -490,7 +492,7 @@ IPA.details_facet = function(spec) {
var div = section.container;
if (visible != div.is(":visible")) {
- div.slideToggle();
+ div.slideToggle('slow', that.resize);
}
};