summaryrefslogtreecommitdiffstats
path: root/install/ui/search.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/search.js')
-rw-r--r--install/ui/search.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/install/ui/search.js b/install/ui/search.js
index 454ecf453..c469debc8 100644
--- a/install/ui/search.js
+++ b/install/ui/search.js
@@ -146,10 +146,9 @@ IPA.search_facet = function(spec) {
label: IPA.messages.buttons.remove,
icon: 'remove-icon',
click: function() {
- if (that.remove_button.hasClass('input_link_disabled')) {
- return false;
+ if (!that.remove_button.hasClass('action-button-disabled')) {
+ that.remove();
}
- that.remove();
return false;
}
}).appendTo(that.controls);
@@ -181,9 +180,9 @@ IPA.search_facet = function(spec) {
if (that.remove_button) {
if (values.length === 0) {
- that.remove_button.addClass('input_link_disabled');
+ that.remove_button.addClass('action-button-disabled');
} else {
- that.remove_button.removeClass('input_link_disabled');
+ that.remove_button.removeClass('action-button-disabled');
}
}
};