diff options
Diffstat (limited to 'install/ui/search.js')
-rw-r--r-- | install/ui/search.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/install/ui/search.js b/install/ui/search.js index c98e0028..e541833c 100644 --- a/install/ui/search.js +++ b/install/ui/search.js @@ -38,12 +38,6 @@ IPA.search_facet = function(spec) { var that = IPA.table_facet(spec); - function get_values() { - return that.table.get_selected_values(); - } - - that.get_values = spec.get_values || get_values; - var init = function() { that.init_table(that.managed_entity); @@ -127,7 +121,7 @@ IPA.search_facet = function(spec) { that.show_remove_dialog = function() { - var values = that.get_values(); + var values = that.get_selected_values(); var title; if (!values.length) { |