summaryrefslogtreecommitdiffstats
path: root/install/ui/widget.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/widget.js')
-rw-r--r--install/ui/widget.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/install/ui/widget.js b/install/ui/widget.js
index fb1ad8fbd..12a6b966c 100644
--- a/install/ui/widget.js
+++ b/install/ui/widget.js
@@ -1719,14 +1719,12 @@ IPA.combobox_widget = function(spec) {
name: 'list',
size: that.list_size,
style: 'width: 100%',
- click: function() {
- that.close();
- },
change: function() {
var value = $('option:selected', that.list).val();
that.input.val(value);
IPA.select_range(that.input, 0, 0);
+ that.close();
that.validate();
that.set_dirty(that.test_dirty());
}