Skip to content

Commit ac4e6b3

Browse files
authored
Superficial changes to get CI running
1 parent 7ba0e37 commit ac4e6b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/environment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ function environment(p5, fn, lifecycles){
323323
y = typeof y === 'number' ? y : 0;
324324
// Note that x and y values must be unit-less positive integers < 32
325325
// https://developer.mozilla.org/en-US/docs/Web/CSS/cursor
326-
coords = `${Math.max(x,0)} ${Math.max(y,0)}`;
326+
coords = `${Math.max(x, 0)} ${Math.max(y, 0)}`;
327327
}
328328
if (
329329
type.substring(0, 7) === 'http://' ||

0 commit comments

Comments
 (0)