├── .gitignore ├── FileAPI ├── FileAPI.exif.js ├── FileAPI.flash.camera.swf ├── FileAPI.flash.image.swf ├── FileAPI.flash.swf ├── FileAPI.min.js └── crossdomain.xml ├── Gruntfile.js ├── README.md ├── bower.json ├── composer.json ├── index.html ├── jcrop ├── Jcrop.gif ├── jquery.Jcrop.min.css └── jquery.Jcrop.min.js ├── jquery.fileapi.js ├── jquery.fileapi.min.js ├── package.json ├── statics ├── body.png ├── body__top.png ├── click-here.png ├── content.png ├── content__head.png ├── jquery.modal.js ├── logo_small.png ├── main.css ├── splash__blind.png ├── splash__logo.png ├── uploader │ ├── file-icon.png │ ├── rotate.png │ ├── userpic.gif │ └── webcam.png └── view-on-github.png └── tests ├── files ├── 1px.gif ├── dino.png ├── hello.txt ├── image.jpg └── lebowski.json ├── grunt-task ├── phantomjs │ ├── bridge.js │ ├── grunt-lib-phantomjs-main.js │ └── grunt-lib-phantomjs.js └── qunit.js ├── index.html ├── qunit ├── qunit.css └── qunit.js └── tests.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | -------------------------------------------------------------------------------- /FileAPI/FileAPI.exif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/FileAPI/FileAPI.exif.js -------------------------------------------------------------------------------- /FileAPI/FileAPI.flash.camera.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/FileAPI/FileAPI.flash.camera.swf -------------------------------------------------------------------------------- /FileAPI/FileAPI.flash.image.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/FileAPI/FileAPI.flash.image.swf -------------------------------------------------------------------------------- /FileAPI/FileAPI.flash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/FileAPI/FileAPI.flash.swf -------------------------------------------------------------------------------- /FileAPI/FileAPI.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/FileAPI/FileAPI.min.js -------------------------------------------------------------------------------- /FileAPI/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/FileAPI/crossdomain.xml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/bower.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/composer.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/index.html -------------------------------------------------------------------------------- /jcrop/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/jcrop/Jcrop.gif -------------------------------------------------------------------------------- /jcrop/jquery.Jcrop.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/jcrop/jquery.Jcrop.min.css -------------------------------------------------------------------------------- /jcrop/jquery.Jcrop.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/jcrop/jquery.Jcrop.min.js -------------------------------------------------------------------------------- /jquery.fileapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/jquery.fileapi.js -------------------------------------------------------------------------------- /jquery.fileapi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/jquery.fileapi.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/package.json -------------------------------------------------------------------------------- /statics/body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/body.png -------------------------------------------------------------------------------- /statics/body__top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/body__top.png -------------------------------------------------------------------------------- /statics/click-here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/click-here.png -------------------------------------------------------------------------------- /statics/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/content.png -------------------------------------------------------------------------------- /statics/content__head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/content__head.png -------------------------------------------------------------------------------- /statics/jquery.modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/jquery.modal.js -------------------------------------------------------------------------------- /statics/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/logo_small.png -------------------------------------------------------------------------------- /statics/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/main.css -------------------------------------------------------------------------------- /statics/splash__blind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/splash__blind.png -------------------------------------------------------------------------------- /statics/splash__logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/splash__logo.png -------------------------------------------------------------------------------- /statics/uploader/file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/uploader/file-icon.png -------------------------------------------------------------------------------- /statics/uploader/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/uploader/rotate.png -------------------------------------------------------------------------------- /statics/uploader/userpic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/uploader/userpic.gif -------------------------------------------------------------------------------- /statics/uploader/webcam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/uploader/webcam.png -------------------------------------------------------------------------------- /statics/view-on-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/statics/view-on-github.png -------------------------------------------------------------------------------- /tests/files/1px.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/tests/files/1px.gif -------------------------------------------------------------------------------- /tests/files/dino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/tests/files/dino.png -------------------------------------------------------------------------------- /tests/files/hello.txt: -------------------------------------------------------------------------------- 1 | Hello FileAPI! 2 | -------------------------------------------------------------------------------- /tests/files/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/tests/files/image.jpg -------------------------------------------------------------------------------- /tests/files/lebowski.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/tests/files/lebowski.json -------------------------------------------------------------------------------- /tests/grunt-task/phantomjs/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/tests/grunt-task/phantomjs/bridge.js -------------------------------------------------------------------------------- /tests/grunt-task/phantomjs/grunt-lib-phantomjs-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/tests/grunt-task/phantomjs/grunt-lib-phantomjs-main.js -------------------------------------------------------------------------------- /tests/grunt-task/phantomjs/grunt-lib-phantomjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/tests/grunt-task/phantomjs/grunt-lib-phantomjs.js -------------------------------------------------------------------------------- /tests/grunt-task/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/tests/grunt-task/qunit.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/qunit/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/tests/qunit/qunit.css -------------------------------------------------------------------------------- /tests/qunit/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/tests/qunit/qunit.js -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RubaXa/jquery.fileapi/HEAD/tests/tests.js --------------------------------------------------------------------------------