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
{{ message }}
This repository was archived by the owner on May 4, 2021. It is now read-only.
Funções como a closest não retornam um objeto helper quando a jQuery está disponível, e sim um objeto jQuery. Isto pode causar erros nos casos em que o ambiente mude sem avisos.
Ambiente sem jQuery:
helper.wrap('a').closest('div').nodes // NodeList []
Ambiente com jQuery:
helper.wrap('a').closest('div').nodes // undefined
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Funções como a closest não retornam um objeto helper quando a jQuery está disponível, e sim um objeto jQuery. Isto pode causar erros nos casos em que o ambiente mude sem avisos.
Ambiente sem jQuery:
helper.wrap('a').closest('div').nodes // NodeList []
Ambiente com jQuery:
helper.wrap('a').closest('div').nodes // undefined
The text was updated successfully, but these errors were encountered: