Skip to content

Commit 685a832

Browse files
msagerydExilz
authored andcommitted
Fixed messed upp parentesis
1 parent 821b6e9 commit 685a832

File tree

1 file changed

+4
-4
lines changed
  • src/libraries/ViewTransformer

1 file changed

+4
-4
lines changed

src/libraries/ViewTransformer/Rect.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ export default class Rect {
5151
);
5252
} else {
5353
return (
54-
Math.abs(this.left - rect.left < epsilon) &&
55-
Math.abs(this.top - rect.top < epsilon) &&
56-
Math.abs(this.right - rect.right < epsilon) &&
57-
Math.abs(this.bottom - rect.bottom < epsilon)
54+
Math.abs(this.left - rect.left) < epsilon &&
55+
Math.abs(this.top - rect.top) < epsilon &&
56+
Math.abs(this.right - rect.right) < epsilon &&
57+
Math.abs(this.bottom - rect.bottom) < epsilon
5858
);
5959
}
6060
}

0 commit comments

Comments
 (0)