You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug when trying to connect with an account and clicking on the icon instead of clicking on the text.
The case is that you click on the tag instead of on the button tag,
so the this refers to the font awesome and :
$(event.target).attr('id').replace 'entry-', '' - fails
since this isn't the button
the bug can be solved by changing the accounts-entry/client/views/social/social.coffee (Line 28) to check for this case.
you can easily add an if statement to check if there is an id or not,
if not skip and then it will propagate.
another option is to check for the parent node instead of propagation.
Tal
The text was updated successfully, but these errors were encountered:
hi,
There is a bug when trying to connect with an account and clicking on the icon instead of clicking on the text.
The case is that you click on the tag instead of on the button tag,
so the this refers to the font awesome and :
$(event.target).attr('id').replace 'entry-', '' - fails
since this isn't the button
the bug can be solved by changing the accounts-entry/client/views/social/social.coffee (Line 28) to check for this case.
you can easily add an if statement to check if there is an id or not,
if not skip and then it will propagate.
another option is to check for the parent node instead of propagation.
Tal
The text was updated successfully, but these errors were encountered: