From 7486a332211ed13318c0a689657cb4ff7e7d25a3 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Wed, 1 Jun 2011 12:14:53 -0400 Subject: scrollable content areas Turn off the side scroll bars for pages. Resizes the table when the browser resizes For stables, the rows scroll, but not the header. For details, the content area scrolls. Reserves 400 picesl for the header/ footer. Resize is only done on reload --- install/ui/webui.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'install/ui/webui.js') diff --git a/install/ui/webui.js b/install/ui/webui.js index 4f27272f..0ca6b703 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); + }); -- cgit