diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2019-08-14 17:58:42 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2019-08-14 17:58:42 -0400 |
commit | 658cd061fd1927148c3542e4f82f06c6805f98db (patch) | |
tree | ce4aee76490a8903a0c55317d477f9f0cb5e7382 /src | |
parent | 5bc9573aae7982d6b441a79526e0f5c8b75fa62a (diff) |
removed log msgs.
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/InkingCanvas.tsx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/client/views/InkingCanvas.tsx b/src/client/views/InkingCanvas.tsx index 31ffb0f9a..1cfa8d644 100644 --- a/src/client/views/InkingCanvas.tsx +++ b/src/client/views/InkingCanvas.tsx @@ -68,7 +68,6 @@ export class InkingCanvas extends React.Component<InkCanvasProps> { @action onPointerDown = (e: React.PointerEvent): void => { if (e.button !== 0 || e.altKey || e.ctrlKey || InkingControl.Instance.selectedTool === InkTool.None) { - console.log("RETURNING!"); return; } @@ -79,8 +78,6 @@ export class InkingCanvas extends React.Component<InkCanvasProps> { this.previousState = new Map(this.inkData); - console.log("POINTER DOWN"); - if (InkingControl.Instance.selectedTool !== InkTool.Eraser) { // start the new line, saves a uuid to represent the field of the stroke this._currentStrokeId = Utils.GenerateGuid(); |