JohnMcLear / draw

A real time collaborative drawing tool using nodejs, socket.io & paper.js
Apache License 2.0
482 stars 158 forks source link

Generating Different Whiteboards #251

Closed axoivs closed 7 years ago

axoivs commented 7 years ago

How do you keep the Whiteboard from generating different whiteboards. I just want one whiteboard that is used instead of generating a new one every time you access the application.

ocdtrekkie commented 7 years ago

@axoivs When I ported EtherDraw to Sandstorm.io, I needed this functionality, and this is the commit I did it with: https://github.com/ocdtrekkie/draw/commit/c5f616dac94e23db905ee6d1ce609a944a152b8c

Scroll down to the changes to src/static/html/index.html where I simply replaced the random pad name generating function with a stationary board name.

axoivs commented 7 years ago

Ah yes, thank you.