diff options
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) { |