diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-09-06 23:42:52 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-09-06 23:42:52 +0200 |
commit | dd95ecba98b02ede9ac474adfbdd963324eaf541 (patch) | |
tree | 8d00649fb78081c0bf9959e81a9d8dcbeff07ef5 /client/components/users/userHeader.js | |
parent | 76004e407ca54e6e3ac65cc9a06d78ac36667f82 (diff) | |
download | wekan-dd95ecba98b02ede9ac474adfbdd963324eaf541.tar.gz wekan-dd95ecba98b02ede9ac474adfbdd963324eaf541.tar.bz2 wekan-dd95ecba98b02ede9ac474adfbdd963324eaf541.zip |
Fix some dead links
This commit fixes the download link in the activity feed on the
sidebar and the mention link on card description and comments
(replaced by a popup).
`eslint .` now passes without any error or warning.
Fixes #286
Diffstat (limited to 'client/components/users/userHeader.js')
-rw-r--r-- | client/components/users/userHeader.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/users/userHeader.js b/client/components/users/userHeader.js index d8b1ee48..0f91fd15 100644 --- a/client/components/users/userHeader.js +++ b/client/components/users/userHeader.js @@ -35,7 +35,7 @@ Template.editProfilePopup.events({ // XXX For some reason the useraccounts autofocus isnt working in this case. // See https://github.com/meteor-useraccounts/core/issues/384 -Template.changePasswordPopup.onRendered(() => { +Template.changePasswordPopup.onRendered(function() { this.find('#at-field-current_password').focus(); }); |