Skip to content

Commit

Permalink
those are actually properties of the event
Browse files Browse the repository at this point in the history
  • Loading branch information
JosuaKrause committed Jul 28, 2023
1 parent 43dd8fc commit 816bc15
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/pixelcanvas.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ export default class PixelCanvas {
if (e.error && e.error.stack) {
this.writeError(`${e.error.stack}`);
} else {
this.writeError(`${e.message} (${e.filename}:${lineno}:${colno})`);
this.writeError(
`${e.message} (${e.filename}:${e.lineno}:${e.colno})`,
);
}
} catch (_) {
try {
Expand Down

0 comments on commit 816bc15

Please sign in to comment.