diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-06-07 20:48:20 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-06-13 09:23:29 -0400 |
commit | 9704adfe44c915de97f416c18bcaeabea2c927ba (patch) | |
tree | 92fc1e3eb8d3c4816c88750facedd52511ff7ea9 /install/ui/dialog.js | |
parent | d2b483cbb3ca15a68115cf32cfaf89572259914e (diff) | |
download | freeipa-9704adfe44c915de97f416c18bcaeabea2c927ba.tar.gz freeipa-9704adfe44c915de97f416c18bcaeabea2c927ba.tar.xz freeipa-9704adfe44c915de97f416c18bcaeabea2c927ba.zip |
Fixed resizing issues.
The UI has been modified to fix some resizing issues:
Previously the height of facet content was roughly calculated using
resize(). Now the height can be more accurately defined in CSS.
Previously the UI width was fixed. The HTML layout and background
images have been modified to support horizontal expansion if needed.
Diffstat (limited to 'install/ui/dialog.js')
-rw-r--r-- | install/ui/dialog.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/install/ui/dialog.js b/install/ui/dialog.js index 36bc49bb4..3bcb4556d 100644 --- a/install/ui/dialog.js +++ b/install/ui/dialog.js @@ -394,9 +394,6 @@ IPA.adder_dialog = function (spec) { height: '151px' }); - that.available_table.resize = function(){ - }; - var columns = that.columns.values; that.available_table.set_columns(columns); @@ -408,9 +405,6 @@ IPA.adder_dialog = function (spec) { height: '151px' }); - that.selected_table.resize = function(){ - }; - that.selected_table.set_columns(columns); that.selected_table.init(); |