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
This issue was introduced by the changes in PR #69 on line 156.
The find method is used to locate the span for the custom click action. However, as mentioned in the AngularJS documentation, the find method in jqLite is limited to only tag names, and therefore this doesn't work anymore for apps that don't load the full jQuery.
This issue was introduced by the changes in PR #69 on line 156.
The
find
method is used to locate thespan
for the custom click action. However, as mentioned in the AngularJS documentation, thefind
method in jqLite is limited to only tag names, and therefore this doesn't work anymore for apps that don't load the full jQuery.A way to fix this would be to use
querySelector
:The text was updated successfully, but these errors were encountered: