From f8fc3bbcd84e12d4f918fe05910c9e664fc0b07c Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Fri, 29 Aug 2014 10:33:23 +0200 Subject: webui: notify psw change success only once Password change initiated from header menu notified success twice. First one in `dialogs.password.dialog` and second one in a success callback. The second notification was removed. Caused by: https://fedorahosted.org/freeipa/changeset/870db2f677dff01750aeec104c90fce3ca0e54be/ Reviewed-By: Endi Sukma Dewata --- install/ui/src/freeipa/ipa.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/install/ui/src/freeipa/ipa.js b/install/ui/src/freeipa/ipa.js index 0fb35632e..b414e4825 100644 --- a/install/ui/src/freeipa/ipa.js +++ b/install/ui/src/freeipa/ipa.js @@ -632,8 +632,6 @@ IPA.password_selfservice = function() { IPA.update_password_expiration(); }; command.execute(); - - IPA.notify_success(text.get('@i18n:password.password_change_complete')); }); reset_dialog.open(); }; -- cgit