From 727764bff7a43ec906dee42b6cd2f6702b06cd98 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Tue, 22 Oct 2013 13:12:46 +0200 Subject: Fix radios behavior in automount map adder dialog https://fedorahosted.org/freeipa/ticket/3904 --- install/ui/src/freeipa/automount.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'install/ui/src') diff --git a/install/ui/src/freeipa/automount.js b/install/ui/src/freeipa/automount.js index fca476fd..b010a52d 100644 --- a/install/ui/src/freeipa/automount.js +++ b/install/ui/src/freeipa/automount.js @@ -313,7 +313,8 @@ IPA.automountmap_adder_dialog = function(spec) { indirect_section.set_visible(true); }); - direct_input.click(); + direct_input.prop('checked', true); + direct_input.trigger('change'); }; that.reset = function() { @@ -322,7 +323,8 @@ IPA.automountmap_adder_dialog = function(spec) { var method_widget = that.widgets.get_widget('general.method'); var direct_input = $('input[value="add"]', method_widget.container); - direct_input.click(); + direct_input.prop('checked', true); + direct_input.trigger('change'); }; return that; -- cgit