diff options
author | Endi Sukma Dewata <edewata@redhat.com> | 2011-11-21 18:58:38 -0600 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-12-07 15:33:23 +0000 |
commit | 84019af3f12a5c8a908e7ca52a8d678e21184dce (patch) | |
tree | fa2e4321e6949b3670b82acafbc9ebb4ec00c25e /install/ui/facet.js | |
parent | fa32699dbf1c509125e6a39e22b89c58fd1d5078 (diff) | |
download | freeipa.git-84019af3f12a5c8a908e7ca52a8d678e21184dce.tar.gz freeipa.git-84019af3f12a5c8a908e7ca52a8d678e21184dce.tar.xz freeipa.git-84019af3f12a5c8a908e7ca52a8d678e21184dce.zip |
Added external fields for HBAC Test.
A text field has been added for specifying external user, host, and
service for HBAC testing.
Ticket #388
Diffstat (limited to 'install/ui/facet.js')
-rw-r--r-- | install/ui/facet.js | 6 |
1 files changed, 5 insertions, 1 deletions
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) { |