From 571274e978434a7b5e17100076172233e7320855 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Fri, 15 Jul 2011 12:18:59 -0500 Subject: 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 --- install/ui/hbac.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install/ui/hbac.js') 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); } })); -- cgit