subprotocol / verlet-js

A simple Verlet physics engine written in javascript
Other
3.76k stars 461 forks source link

eliminate cursor highlighting on the canvas element #2

Closed james2doyle closed 11 years ago

james2doyle commented 11 years ago
canvas {
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

this eliminates the canvas element from being highlighted by the users dragging.

subprotocol commented 11 years ago

Great catch, thanks for the fix!