From 84019af3f12a5c8a908e7ca52a8d678e21184dce Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Mon, 21 Nov 2011 18:58:38 -0600 Subject: Added external fields for HBAC Test. A text field has been added for specifying external user, host, and service for HBAC testing. Ticket #388 --- install/ui/facet.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'install/ui/facet.js') diff --git a/install/ui/facet.js b/install/ui/facet.js index 4ffd43dc..0680c150 100644 --- a/install/ui/facet.js +++ b/install/ui/facet.js @@ -602,9 +602,13 @@ IPA.table_facet = function(spec) { batch.execute(); }; + that.get_selected_values = function() { + return that.table.get_selected_values(); + }; + that.select_changed = function() { - that.selected_values = that.table.get_selected_values(); + that.selected_values = that.get_selected_values(); if (that.remove_button) { if (that.selected_values.length === 0) { -- cgit