summaryrefslogtreecommitdiffstats
path: root/install/ui/aci.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2011-09-23 17:49:46 +0200
committerEndi S. Dewata <edewata@redhat.com>2011-09-26 14:58:06 +0000
commit09dc3562f2706184ae15ed36b1d874a00fe33e65 (patch)
tree7adab455ba2ae47c5ade8f2b2b80922cf7ad39ef /install/ui/aci.js
parent5915e478ec81c7a2baa49700de976aa949e687e1 (diff)
downloadfreeipa-09dc3562f2706184ae15ed36b1d874a00fe33e65.tar.gz
freeipa-09dc3562f2706184ae15ed36b1d874a00fe33e65.tar.xz
freeipa-09dc3562f2706184ae15ed36b1d874a00fe33e65.zip
Fixed: Column header for attributes table should be full width
https://fedorahosted.org/freeipa/ticket/1841 The column header for the attributes table (IPA.attributes_widget) does not cover the entire width of the table. This problem appears in the adder dialog and details page for permissions, self-service permissions, and delegations.
Diffstat (limited to 'install/ui/aci.js')
-rw-r--r--install/ui/aci.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/install/ui/aci.js b/install/ui/aci.js
index 929e13d4b..fc62f2770 100644
--- a/install/ui/aci.js
+++ b/install/ui/aci.js
@@ -248,7 +248,7 @@ IPA.attributes_widget = function(spec) {
that.table = $('<table/>', {
id:id,
- 'class':'search-table aci-attribute-table'
+ 'class':'search-table aci-attribute-table scrollable'
}).
append('<thead/>').
append('<tbody/>').
@@ -257,10 +257,9 @@ IPA.attributes_widget = function(spec) {
var tr = $('<tr></tr>').appendTo($('thead', that.table));
tr.append($('<th/>', {
- style:"height:2em; vertical-align:bottom;",
- html:$('<input/>',{
+ html: $('<input/>', {
type: "checkbox",
- click: function(){
+ click: function() {
$('.aci-attribute', that.table).
attr('checked', $(this).attr('checked'));
that.set_dirty(that.test_dirty());
@@ -275,7 +274,7 @@ IPA.attributes_widget = function(spec) {
that.create_undo(container);
}
- if (that.object_type){
+ if (that.object_type) {
that.populate(that.object_type);
}
};