Browse Source

Merge pull request #23 from doryphores/fix-largeimagethreshold

Fix how largeImageThreshold option is set
pull/25/head
James Cryer 10 years ago
parent
commit
bbebbf4124
  1. 4
      resemble.js

4
resemble.js

@ -597,7 +597,9 @@ URL: https://github.com/Huddle/Resemble.js
pixelTransparency = options.transparency || pixelTransparency; pixelTransparency = options.transparency || pixelTransparency;
largeImageThreshold = options.largeImageThreshold || largeImageThreshold; if (options.largeImageThreshold !== undefined) {
largeImageThreshold = options.largeImageThreshold;
}
return this; return this;
}; };

Loading…
Cancel
Save