├── .gitignore ├── README.md ├── _includes ├── analytics.html ├── editing.html ├── header.html ├── how-it-works.html ├── how-to-use-it.html ├── reference.html └── reference │ ├── animate.html │ ├── change.html │ ├── container.html │ ├── editing.html │ ├── json.html │ ├── paper.html │ ├── pen.html │ ├── raphael-sketchpad.html │ └── strokes.html ├── index.html ├── javascripts ├── json2.js ├── json2.min.js ├── raphael-2.0.1.js ├── raphael-2.0.1.min.js └── raphael.js ├── run_jekyll.sh ├── src └── raphael.sketchpad.js └── stylesheets ├── cw15gw20cc24 ├── ie.css ├── print.css └── screen.css └── main.css /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/README.md -------------------------------------------------------------------------------- /_includes/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/analytics.html -------------------------------------------------------------------------------- /_includes/editing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/editing.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/how-it-works.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/how-it-works.html -------------------------------------------------------------------------------- /_includes/how-to-use-it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/how-to-use-it.html -------------------------------------------------------------------------------- /_includes/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/reference.html -------------------------------------------------------------------------------- /_includes/reference/animate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/reference/animate.html -------------------------------------------------------------------------------- /_includes/reference/change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/reference/change.html -------------------------------------------------------------------------------- /_includes/reference/container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/reference/container.html -------------------------------------------------------------------------------- /_includes/reference/editing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/reference/editing.html -------------------------------------------------------------------------------- /_includes/reference/json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/reference/json.html -------------------------------------------------------------------------------- /_includes/reference/paper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/reference/paper.html -------------------------------------------------------------------------------- /_includes/reference/pen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/reference/pen.html -------------------------------------------------------------------------------- /_includes/reference/raphael-sketchpad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/reference/raphael-sketchpad.html -------------------------------------------------------------------------------- /_includes/reference/strokes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/_includes/reference/strokes.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/index.html -------------------------------------------------------------------------------- /javascripts/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/javascripts/json2.js -------------------------------------------------------------------------------- /javascripts/json2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/javascripts/json2.min.js -------------------------------------------------------------------------------- /javascripts/raphael-2.0.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/javascripts/raphael-2.0.1.js -------------------------------------------------------------------------------- /javascripts/raphael-2.0.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/javascripts/raphael-2.0.1.min.js -------------------------------------------------------------------------------- /javascripts/raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/javascripts/raphael.js -------------------------------------------------------------------------------- /run_jekyll.sh: -------------------------------------------------------------------------------- 1 | jekyll serve -P 5020 2 | -------------------------------------------------------------------------------- /src/raphael.sketchpad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/src/raphael.sketchpad.js -------------------------------------------------------------------------------- /stylesheets/cw15gw20cc24/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/stylesheets/cw15gw20cc24/ie.css -------------------------------------------------------------------------------- /stylesheets/cw15gw20cc24/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/stylesheets/cw15gw20cc24/print.css -------------------------------------------------------------------------------- /stylesheets/cw15gw20cc24/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/stylesheets/cw15gw20cc24/screen.css -------------------------------------------------------------------------------- /stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ianli/raphael-sketchpad/HEAD/stylesheets/main.css --------------------------------------------------------------------------------