gitextract_ye9rh2i7/ ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── LICENSE ├── README.md ├── demo/ │ ├── C#/ │ │ ├── UploadController.js │ │ ├── UploadHandler.ashx │ │ └── UploadHandler.ashx.cs │ ├── pom.xml │ └── src/ │ └── main/ │ ├── java/ │ │ └── com/ │ │ └── df/ │ │ └── angularfileupload/ │ │ ├── CORSFilter.java │ │ ├── FileUpload.java │ │ └── S3Signature.java │ ├── resources/ │ │ ├── META-INF/ │ │ │ ├── jdoconfig.xml │ │ │ └── persistence.xml │ │ └── log4j.properties │ └── webapp/ │ ├── WEB-INF/ │ │ ├── appengine-web.xml │ │ ├── logging.properties │ │ └── web.xml │ ├── common.css │ ├── crossdomain.xml │ ├── donate.html │ ├── index.html │ └── js/ │ ├── FileAPI.flash.swf │ ├── FileAPI.js │ ├── ng-file-upload-all.js │ ├── ng-file-upload-shim.js │ ├── ng-file-upload.js │ ├── ng-img-crop.css │ ├── ng-img-crop.js │ └── upload.js ├── dist/ │ ├── FileAPI.flash.swf │ ├── FileAPI.js │ ├── ng-file-upload-all.js │ ├── ng-file-upload-shim.js │ └── ng-file-upload.js ├── index.js ├── nuget/ │ ├── Package.nuspec │ ├── build.bat │ └── nuget.sh ├── package.json ├── release.sh ├── src/ │ ├── FileAPI.flash.swf │ ├── FileAPI.js │ ├── data-url.js │ ├── drop.js │ ├── exif.js │ ├── model.js │ ├── resize.js │ ├── select.js │ ├── shim-elem.js │ ├── shim-filereader.js │ ├── shim-upload.js │ ├── upload.js │ └── validate.js └── test/ ├── .bowerrc ├── bower.json ├── index.html └── spec/ └── test.js