├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── css └── photoeditor.css ├── demo.html ├── js └── photoeditor.js └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribalmedia/photoeditor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules/ 3 | .idea/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribalmedia/photoeditor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribalmedia/photoeditor/HEAD/README.md -------------------------------------------------------------------------------- /css/photoeditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribalmedia/photoeditor/HEAD/css/photoeditor.css -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribalmedia/photoeditor/HEAD/demo.html -------------------------------------------------------------------------------- /js/photoeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribalmedia/photoeditor/HEAD/js/photoeditor.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tribalmedia/photoeditor/HEAD/package.json --------------------------------------------------------------------------------