├── .editorconfig ├── .gitignore ├── .jshint ├── .travis.yml ├── LICENSE ├── README.md ├── bower.json ├── demo ├── index.html ├── redpanda-200x400.jpg ├── redpanda-350x427.jpg ├── redpanda-600x600.jpg ├── redpanda-640x480.jpg └── redpanda-800x480.jpg ├── karma.conf.js ├── karma.travis.conf.js ├── ng-jcrop.js ├── package.json └── test ├── 1000x200.png ├── 10x11.gif ├── 11x10.gif ├── 13x13.png ├── 300x400.jpg ├── 350x427.jpg ├── 370x400.jpg ├── 3888x2592.jpg ├── 485x411.jpg ├── 600x600.jpg ├── function.prototype.bind.js └── ng-jcrop_test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | node_modules 4 | bower_components 5 | coverage 6 | .idea 7 | *.log 8 | -------------------------------------------------------------------------------- /.jshint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/.jshint -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/bower.json -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/redpanda-200x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/demo/redpanda-200x400.jpg -------------------------------------------------------------------------------- /demo/redpanda-350x427.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/demo/redpanda-350x427.jpg -------------------------------------------------------------------------------- /demo/redpanda-600x600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/demo/redpanda-600x600.jpg -------------------------------------------------------------------------------- /demo/redpanda-640x480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/demo/redpanda-640x480.jpg -------------------------------------------------------------------------------- /demo/redpanda-800x480.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/demo/redpanda-800x480.jpg -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/karma.conf.js -------------------------------------------------------------------------------- /karma.travis.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/karma.travis.conf.js -------------------------------------------------------------------------------- /ng-jcrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/ng-jcrop.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/package.json -------------------------------------------------------------------------------- /test/1000x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/test/1000x200.png -------------------------------------------------------------------------------- /test/10x11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/test/10x11.gif -------------------------------------------------------------------------------- /test/11x10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/test/11x10.gif -------------------------------------------------------------------------------- /test/13x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/test/13x13.png -------------------------------------------------------------------------------- /test/300x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/test/300x400.jpg -------------------------------------------------------------------------------- /test/350x427.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/test/350x427.jpg -------------------------------------------------------------------------------- /test/370x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/test/370x400.jpg -------------------------------------------------------------------------------- /test/3888x2592.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/test/3888x2592.jpg -------------------------------------------------------------------------------- /test/485x411.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/test/485x411.jpg -------------------------------------------------------------------------------- /test/600x600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/test/600x600.jpg -------------------------------------------------------------------------------- /test/function.prototype.bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/test/function.prototype.bind.js -------------------------------------------------------------------------------- /test/ng-jcrop_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrefarzat/ng-jcrop/HEAD/test/ng-jcrop_test.js --------------------------------------------------------------------------------