An open API service indexing awesome lists of open source software.

https://github.com/sketchingdev/undo-able-paint-application

Example paint application with undo functionality.
https://github.com/sketchingdev/undo-able-paint-application

Last synced: 4 months ago
JSON representation

Example paint application with undo functionality.

Awesome Lists containing this project

README

          

Undo-able Paint Application
===========================
This project is a example of the [Command pattern][1] being used to implement undo functionality in a simple JavaScript Paint Application. It was created to accompany [my blog article][2] on the subject.

Generating documentation
------------------------
To generate the project's documentation download [JSDoc 3][3], and then execute the following (being sure to modify the paths where necessary).

./jsdoc/jsdoc.cmd -r "./Undo-able-Paint-Application/src/" -d "./Undo-able-Paint-Application/docs"

[1]: https://en.wikipedia.org/wiki/Command_pattern
[2]: http://www.flyingtophat.co.uk/blog/2014/02/25/undo-functionality.html
[3]: https://github.com/jsdoc3/jsdoc.git