├── .bowerrc ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── Gruntfile.coffee ├── LICENSE-MIT ├── README.md ├── bower.json ├── demo.gif ├── demo.html ├── lib └── simditor-dropzone.js ├── package.json └── src └── dropzone.coffee /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "vendor/bower" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/simditor-dropzone/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/simditor-dropzone/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'http://ruby.taobao.org' 2 | 3 | gem 'sass' 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/simditor-dropzone/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/simditor-dropzone/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/simditor-dropzone/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/simditor-dropzone/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/simditor-dropzone/HEAD/bower.json -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/simditor-dropzone/HEAD/demo.gif -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/simditor-dropzone/HEAD/demo.html -------------------------------------------------------------------------------- /lib/simditor-dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/simditor-dropzone/HEAD/lib/simditor-dropzone.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/simditor-dropzone/HEAD/package.json -------------------------------------------------------------------------------- /src/dropzone.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ichord/simditor-dropzone/HEAD/src/dropzone.coffee --------------------------------------------------------------------------------