From cec6703da35a511340ded9a1ec5958be9bd9bc8e Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Thu, 9 Dec 2010 14:20:40 -0600 Subject: Account activation adjustment The user details facet has been modified such that when the account is activated/deactivated the page will be reloaded. Some methods in the framework have been changed: - The ipa_widget.clear() has been removed because it can be replaced by existing reset(). - The ipa_widget.set_values() has been renamed into update(). --- install/static/add.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install/static/add.js') diff --git a/install/static/add.js b/install/static/add.js index f2eebb8a..0048f4b1 100644 --- a/install/static/add.js +++ b/install/static/add.js @@ -57,7 +57,7 @@ function ipa_add_dialog(spec) { var facet = entity.get_facet('search'); var table = facet.table; table.refresh(); - that.clear(); + that.reset(); } ); }); -- cgit