summaryrefslogtreecommitdiffstats
path: root/install/ui/webui.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/webui.js')
-rw-r--r--install/ui/webui.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/install/ui/webui.js b/install/ui/webui.js
index 4f27272f8..0ca6b703a 100644
--- a/install/ui/webui.js
+++ b/install/ui/webui.js
@@ -109,6 +109,8 @@ IPA.self_serv_navigation = function(spec) {
/* main (document onready event handler) */
$(function() {
+
+
/* main loop (hashchange event handler) */
function window_hashchange(evt){
IPA.nav.update();
@@ -151,6 +153,17 @@ $(function() {
IPA.nav.update();
$('#login_header').html(IPA.messages.login.header);
+
+ function resizeFacet(){
+ var entity = IPA.current_entity;
+ if (entity){
+ var facet_name = IPA.current_facet(entity);
+ var facet = entity.get_facet(facet_name);
+ if (!facet) return;
+ facet.resize();
+ }
+ }
+ jQuery.event.add(window, "resize", resizeFacet);
}
@@ -161,4 +174,5 @@ $(function() {
}
IPA.init(null, null, init_on_win, init_on_error);
+
});