├── .gitignore ├── Gruntfile.coffee ├── LICENSE.txt ├── README.md ├── assets └── demo.svg ├── bower.json ├── lib └── raphael-min.js ├── package.json ├── raphael-svg-import.js ├── raphael-svg-import.min.js └── tests ├── libs ├── jquery.min.js ├── qunit.css └── qunit.js ├── qunit.html ├── qunit_phantom.js └── visual_tests.html /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | node_modules/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/README.md -------------------------------------------------------------------------------- /assets/demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/assets/demo.svg -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/bower.json -------------------------------------------------------------------------------- /lib/raphael-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/lib/raphael-min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/package.json -------------------------------------------------------------------------------- /raphael-svg-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/raphael-svg-import.js -------------------------------------------------------------------------------- /raphael-svg-import.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/raphael-svg-import.min.js -------------------------------------------------------------------------------- /tests/libs/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/tests/libs/jquery.min.js -------------------------------------------------------------------------------- /tests/libs/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/tests/libs/qunit.css -------------------------------------------------------------------------------- /tests/libs/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/tests/libs/qunit.js -------------------------------------------------------------------------------- /tests/qunit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/tests/qunit.html -------------------------------------------------------------------------------- /tests/qunit_phantom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/tests/qunit_phantom.js -------------------------------------------------------------------------------- /tests/visual_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crccheck/raphael-svg-import-classic/HEAD/tests/visual_tests.html --------------------------------------------------------------------------------