Browse Source

spacing and falsey

pull/104/head
james.cryer 7 years ago
parent
commit
74585fcfb4
  1. 4
      resemble.js

4
resemble.js

@ -30,7 +30,7 @@ URL: https://github.com/Huddle/Resemble.js
}
function withinBoundingBox(x, y, width, height) {
if (boundingBox === null) {
if (!boundingBox) {
return true;
}
@ -70,7 +70,7 @@ URL: https://github.com/Huddle/Resemble.js
};
var errorPixel = errorPixelTransform.flat;
var boundingBox = null;
var boundingBox;
var largeImageThreshold = 1200;
var useCrossOrigin = true;
var document = typeof window != "undefined" ? window.document : {

Loading…
Cancel
Save