We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
toElement
the method toElement here does not handle in a correct way selectors as #id>.class that are written without spaces.
#id>.class
the problem is in the if on lines 768-771.
if
we need to handle this edge cases as selectors starting with an # and with one character as >, ~ or + inside the string.
#
>
~
+
I am working on the fix for this issue
The text was updated successfully, but these errors were encountered:
fix for 🐛 metal#378
b5bd6d6
Merge pull request #379 from gcmznt/master
74b8f38
fix for 🐛 #378
No branches or pull requests
the method
toElement
here does not handle in a correct way selectors as#id>.class
that are written without spaces.the problem is in the
if
on lines 768-771.we need to handle this edge cases as selectors starting with an
#
and with one character as>
,~
or+
inside the string.I am working on the fix for this issue
The text was updated successfully, but these errors were encountered: