summaryrefslogtreecommitdiffstats
path: root/install/ui/hbac.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-07-15 12:18:59 -0500
committerAdam Young <ayoung@redhat.com>2011-07-18 14:47:57 -0400
commit571274e978434a7b5e17100076172233e7320855 (patch)
tree6f3218dca5c41aad38d408f311546c72dd5c99d3 /install/ui/hbac.js
parent95901bbdb55cdf4213d3da4a79792805f7e8f264 (diff)
downloadfreeipa-571274e978434a7b5e17100076172233e7320855.tar.gz
freeipa-571274e978434a7b5e17100076172233e7320855.tar.xz
freeipa-571274e978434a7b5e17100076172233e7320855.zip
Entity select widget improvements
The IPA.entity_select_widget has been modified into a searchable and editable drop down list. The base functionality has been extracted into IPA.combobox_widget. Ticket #1361
Diffstat (limited to 'install/ui/hbac.js')
-rw-r--r--install/ui/hbac.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/install/ui/hbac.js b/install/ui/hbac.js
index 87f8a36dc..d7c0b9462 100644
--- a/install/ui/hbac.js
+++ b/install/ui/hbac.js
@@ -787,7 +787,7 @@ IPA.hbacrule_accesstime_widget = function(spec) {
button.replaceWith(IPA.button({
name: 'remove',
'label': button.val(),
- 'icon': 'ui-icon-trash',
+ 'icon': 'remove-icon',
'click': function() { that.remove(that.container); }
}));
@@ -795,7 +795,7 @@ IPA.hbacrule_accesstime_widget = function(spec) {
button.replaceWith(IPA.button({
name: 'add',
'label': button.val(),
- 'icon': 'ui-icon-plus',
+ 'icon': 'add-icon',
'click': function() { that.add(that.container); }
}));