From: Galen Charlton Date: Thu, 19 May 2011 16:47:57 +0000 (-0400) Subject: OU settings page tweaks X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d22db762f5439273b2a9a6349ad18accf4540eb8;p=evergreen%2Fequinox.git OU settings page tweaks * resize grid on window resize * add 'tall' CSS class to grid Author: Bob Wicksall Signed-off-by: Bob Wicksall Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/xul/staff_client/server/admin/org_unit_settings.xhtml b/Open-ILS/xul/staff_client/server/admin/org_unit_settings.xhtml index 017ab39afb..49d5537609 100644 --- a/Open-ILS/xul/staff_client/server/admin/org_unit_settings.xhtml +++ b/Open-ILS/xul/staff_client/server/admin/org_unit_settings.xhtml @@ -59,7 +59,7 @@ ]] }]; -
+
@@ -109,3 +109,12 @@ + + function resizeGrid() { + osGrid.resize(); + osGrid.update(); + } + + dojo.addOnLoad(function() { + dojo.connect(window, "onresize", resizeGrid); + });