From c151e01e7954b0181c97a1b495e2237e00198492 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Tue, 23 Apr 2013 14:38:36 +0200 Subject: Add widget updated event https://fedorahosted.org/freeipa/ticket/3235 --- install/ui/src/freeipa/host.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'install/ui/src/freeipa/host.js') diff --git a/install/ui/src/freeipa/host.js b/install/ui/src/freeipa/host.js index 4dd58f88..ac585d7f 100644 --- a/install/ui/src/freeipa/host.js +++ b/install/ui/src/freeipa/host.js @@ -603,6 +603,7 @@ IPA.host_keytab_widget = function(spec) { that.update = function(values) { set_status(values[0] ? 'present' : 'missing'); + that.updated.notify([], that); }; that.clear = function() { @@ -764,6 +765,7 @@ IPA.host_password_widget = function(spec) { that.update = function(values) { set_status(values[0] ? 'present' : 'missing'); + that.updated.notify([], that); }; that.clear = function() { -- cgit