fix: changed overly liberal regex for removing transparent images

pull/22/head
Adam Pash 8 years ago
parent 7411922c55
commit 783a9cfb2f

@ -1,5 +1,5 @@
// Spacer images to be removed
export const SPACER_RE = new RegExp('trans|transparent|spacer|blank', 'i');
export const SPACER_RE = new RegExp('transparent|spacer|blank', 'i');
// The class we will use to mark elements we want to keep
// but would normally remove

Loading…
Cancel
Save