From 7d364c80c0384a8e7a0f52f106970c45c924fdb0 Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Tue, 13 Nov 2018 12:57:02 +0200 Subject: [PATCH] Added hotfix to fix password button until the relevant package can be updated, fixes #67 --- app/client/lib/fixPasswordButton.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/client/lib/fixPasswordButton.js diff --git a/app/client/lib/fixPasswordButton.js b/app/client/lib/fixPasswordButton.js new file mode 100644 index 00000000..26fed09d --- /dev/null +++ b/app/client/lib/fixPasswordButton.js @@ -0,0 +1,5 @@ +let pwdFormSubmit = AccountsTemplates.atPwdFormEvents["submit #at-pwd-form"] + +Template.atPwdForm.events({ + "click .at-btn.submit": pwdFormSubmit, +});