Skip to content
New issue

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

Small inaccuracy in the regular expression when extracting a link to a background image. #5

Open
rumano opened this issue Sep 19, 2021 · 0 comments

Comments

@rumano
Copy link

rumano commented Sep 19, 2021

When a background image is used and an additional effect follows it, the script cannot correctly recognize the link to the image.

example: background-image: url (background.jpg), linear-gradient (rgba (0, 0, 0, 0.55) 0px, rgba (0, 0, 0, 0) 250px);

the code currently uses the following regex:
var pattern = /url(['"]?(.+)['"]?)/;

the following code snippet fixes this:
var pattern = /url(['"]?(.+)(jpg|jpeg|png|webp|gif|bmp|tiff)['"]?)/;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant