From 3bfd49a46543b5965298087fb6427e45760c4804 Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Thu, 12 Jan 2012 11:11:47 -0600 Subject: Fixed problem removing automount keys and DNS records. Due to a recent change the deleting automount keys and DNS records no longer worked. The functions that are supposed to get the selected values has been fixed to use the correct names and element type. They also have been converted into methods of the search facets. Ticket #2256 --- install/ui/search.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'install/ui/search.js') 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) { -- cgit