summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2012-08-21 17:27:21 +0200
committerPetr Vobornik <pvoborni@redhat.com>2012-08-29 11:59:29 +0200
commit36c345dd1d321149e21157b31832f55f11f44a18 (patch)
treeb1ad13e47e536aee134d43d23aafa3b5a0f999f0 /install
parent785e80c4fc0804812a148977cf42ea1f626ecece (diff)
downloadfreeipa-36c345dd1d321149e21157b31832f55f11f44a18.tar.gz
freeipa-36c345dd1d321149e21157b31832f55f11f44a18.tar.xz
freeipa-36c345dd1d321149e21157b31832f55f11f44a18.zip
Revert change causing failure in test automation
Move of click handler in patch for #2834 causes failure of automation tests. This patch reverts the problematic part. It should not affect function of fix for #2824. https://fedorahosted.org/freeipa/ticket/3014
Diffstat (limited to 'install')
-rw-r--r--install/ui/widget.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/widget.js b/install/ui/widget.js
index ea0702a22..2f12ad841 100644
--- a/install/ui/widget.js
+++ b/install/ui/widget.js
@@ -2179,8 +2179,7 @@ IPA.combobox_widget = function(spec) {
name: 'list',
size: that.size,
style: 'width: 100%',
- change: that.select_on_change,
- click: that.select_on_change
+ change: that.select_on_change
}).appendTo(div);
if (that.undo) {
@@ -2322,7 +2321,8 @@ IPA.combobox_widget = function(spec) {
that.create_option = function(label, value) {
var option = $('<option/>', {
text: label,
- value: value
+ value: value,
+ click: that.select_on_change
}).appendTo(that.list);
};