diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2013-11-06 16:58:12 +0100 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2014-01-21 12:04:04 +0100 |
commit | 2bfe2b8c51d4e6de68b9b4f9e679d2918bcd41eb (patch) | |
tree | d31adf8613dea9ff4e5eaf612212ef2484c65d85 /install/ui/src/freeipa/widget.js | |
parent | 0f1a756eae0d59b6b3db36cbea36602d8ec385b9 (diff) | |
download | freeipa-2bfe2b8c51d4e6de68b9b4f9e679d2918bcd41eb.tar.gz freeipa-2bfe2b8c51d4e6de68b9b4f9e679d2918bcd41eb.tar.xz freeipa-2bfe2b8c51d4e6de68b9b4f9e679d2918bcd41eb.zip |
Font awesome glyphs as checkboxes and radios
https://fedorahosted.org/freeipa/ticket/3904
Diffstat (limited to 'install/ui/src/freeipa/widget.js')
-rw-r--r-- | install/ui/src/freeipa/widget.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/src/freeipa/widget.js b/install/ui/src/freeipa/widget.js index c39f3326c..28a068bfb 100644 --- a/install/ui/src/freeipa/widget.js +++ b/install/ui/src/freeipa/widget.js @@ -54,7 +54,7 @@ var exp = {}; * @member IPA * @property {number} */ -IPA.checkbox_column_width = 22; +IPA.checkbox_column_width = 13; /** * String to show next to required fields to indicate that the field is required. @@ -1169,7 +1169,7 @@ IPA.option_widget_base = function(spec, that) { }).appendTo(container); option.label_node = $('<label/>', { - html: option.label || ' ', + html: option.label || '', title: option.tooltip || that.tooltip, 'for': id }).appendTo(container); @@ -1556,7 +1556,7 @@ IPA.standalone_option = function(spec, container, label) { if (!label) { input.addClass('standalone'); - label = ' '; + label = ''; } var label_el = $('<label/>', { |