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
It seems whenever the plugin gets an url that is already encoded, it encodes it again, thus destroying the url.
Perhaps you can test if it is encoded before encoding it, e.g. with a regex, something like /%[0-9A-Z]{2}/g. (that regex needs testing).
/%[0-9A-Z]{2}/g
Maybe you can do like this:
if (!new RegExp(/%[0-9A-Z]{2}/g).test($img.attr('src'))) { // Change $imgBoxCont.css({ 'background-image': 'url("' + encodeURI($img.attr('src')) + '")' }); } else { // Change $imgBoxCont.css({ 'background-image': 'url("' + $img.attr('src') + '")' }); }
The text was updated successfully, but these errors were encountered:
Seeing the same thing here. I actually don't think we should need to encode the background-image URL at all.
Sorry, something went wrong.
@petertflem I'm working around it by running this snippet just before running imgLiquid:
if (new RegExp(/%[0-9A-Z]{2}/g).test($img.attr('src'))) { $img.attr("src", decodeURIComponent($img.attr("src"))); } $img.parent().imgLiquid({ ... });
YMMV.
No branches or pull requests
It seems whenever the plugin gets an url that is already encoded, it encodes it again, thus destroying the url.
Perhaps you can test if it is encoded before encoding it, e.g. with a regex, something like
/%[0-9A-Z]{2}/g
. (that regex needs testing).Maybe you can do like this:
The text was updated successfully, but these errors were encountered: