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
We've implemented the *-image-set for a website but the QueryLoader tries to preload these images incorrect. Our html looks a bit like this:
<div style=" background-image: url(media/1.jpg); background-image: -webkit-image-set( url(media/1.jpg) 1x, url(media/[email protected]) 2x ); "></div>
This piece of HTML results into the GET requests for
http://domain.com/-webkit-image-set(http://domain.com/media/1.jpg%201x http://domain.com/media/[email protected]%202x
It appears the QueryLoader doesn't interpret the *-image-set and therefore simply tries to create an url for the whole string.
The text was updated successfully, but these errors were encountered:
Thanks for letting me know. I will take a look shortly.
Sorry, something went wrong.
Already opened in #118. Will reference this issue as extra information, but will close this issue.
No branches or pull requests
We've implemented the *-image-set for a website but the QueryLoader tries to preload these images incorrect.
Our html looks a bit like this:
This piece of HTML results into the GET requests for
It appears the QueryLoader doesn't interpret the *-image-set and therefore simply tries to create an url for the whole string.
The text was updated successfully, but these errors were encountered: