water-ripple icon indicating copy to clipboard operation
water-ripple copied to clipboard

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

Open rumano opened this issue 3 years ago • 0 comments

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)['"]?)/;

rumano avatar Sep 19 '21 09:09 rumano