subprotocol / verlet-js

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

Please add user-select:none on the `<canvas>` element. #6

Closed Francisc closed 11 years ago

Francisc commented 11 years ago

When you play with the mouse, you select the canvas. Only tested on Canary 28 on Windows 7.

-webkit-user-select:none;
-moz-user-select:-moz-none;
-o-user-select:none;
-ms-user-select:none;
-khtml-user-select:none;
user-select:none;
subprotocol commented 11 years ago

User-select: none should be in there, but I have not updated and pushed the sub module for the site. I am traveling and can't do this right now.

Would you mind checking out master and verifying that it no longer exhibits the issue?

Thanks!

subprotocol commented 11 years ago

This is now fixed by 843f451d7c06ff19210b4b326da5ab41f5381855

Thanks for the heads up.