Browse Source

Fix how largeImageThreshold option is set

pull/23/head
Martin Laine 10 years ago
parent
commit
7bb1c8c742
  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