(e)
| 881 | } |
| 882 | |
| 883 | onMouseMove(e) { |
| 884 | if (this.selecting) { |
| 885 | this.selectionEnd = |
| 886 | e.clientX - this.canvas.getBoundingClientRect().left; |
| 887 | this.drawSelection(); |
| 888 | } |
| 889 | } |
| 890 | |
| 891 | onMouseUp(e) { |
| 892 | if (this.selectionStart !== null) { |
nothing calls this directly
no test coverage detected