summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/service.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2014-07-30 10:08:48 +0200
committerPetr Vobornik <pvoborni@redhat.com>2014-09-11 17:55:17 +0200
commit01a8175119233a4de10dddaf74db5750ff6e0c25 (patch)
treeaec92d8ee9b33beee06574e15dd706ae4312e031 /install/ui/src/freeipa/service.js
parent2257f12652eb67ab9ece1f1aa79aa9f784adfb05 (diff)
downloadfreeipa-01a8175119233a4de10dddaf74db5750ff6e0c25.tar.gz
freeipa-01a8175119233a4de10dddaf74db5750ff6e0c25.tar.xz
freeipa-01a8175119233a4de10dddaf74db5750ff6e0c25.zip
webui: better value-change reporting
- widget save() save method should try to always return value even if read only - report value-change event with actual value to allow processing of the value https://fedorahosted.org/freeipa/ticket/4402 Reviewed-By: Endi Sukma Dewata <edewata@redhat.com>
Diffstat (limited to 'install/ui/src/freeipa/service.js')
-rw-r--r--install/ui/src/freeipa/service.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/ui/src/freeipa/service.js b/install/ui/src/freeipa/service.js
index 4b04878c0..ee71e7af3 100644
--- a/install/ui/src/freeipa/service.js
+++ b/install/ui/src/freeipa/service.js
@@ -330,7 +330,7 @@ IPA.service_provisioning_status_widget = function (spec) {
that.update = function(values) {
that.status = values && values.length ? values[0] : false;
set_status(that.status ? 'valid' : 'missing');
- that.on_value_changed();
+ that.on_value_changed(values);
};
that.clear = function() {