├── .gitignore ├── .gitmodules ├── main.js ├── index.html ├── README.markdown ├── license.txt └── require.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "raphael"] 2 | path = raphael 3 | url = git@github.com:DmitryBaranovskiy/raphael.git 4 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | require([ "./raphael/raphael" ], function (Raphael) { 2 | var container = document.getElementById("container"); 3 | var paper = Raphael(container, 600, 600); 4 | // Check http://raphaeljs.com/reference.html#Raphael for other ways of creating the paper 5 | }); -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |