├── README.md ├── lib ├── Jcrop │ ├── Jcrop.gif │ ├── jquery.Jcrop.css │ ├── jquery.Jcrop.js │ └── jquery.color.js ├── load-image │ ├── load-image-exif-map.js │ ├── load-image-exif.js │ ├── load-image-meta.js │ ├── load-image-orientation.js │ └── load-image.js ├── photoUp.coffee ├── photoUp.css ├── photoUp.html ├── photoUp.less └── t9n │ ├── cs.coffee │ ├── de.coffee │ ├── en.coffee │ ├── es.coffee │ ├── it.coffee │ ├── nl.coffee │ ├── pt_BR.coffee │ └── sk.coffee ├── package.js └── test ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions └── client ├── photoUpTest.coffee ├── photoUpTest.css └── photoUpTest.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/README.md -------------------------------------------------------------------------------- /lib/Jcrop/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/Jcrop/Jcrop.gif -------------------------------------------------------------------------------- /lib/Jcrop/jquery.Jcrop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/Jcrop/jquery.Jcrop.css -------------------------------------------------------------------------------- /lib/Jcrop/jquery.Jcrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/Jcrop/jquery.Jcrop.js -------------------------------------------------------------------------------- /lib/Jcrop/jquery.color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/Jcrop/jquery.color.js -------------------------------------------------------------------------------- /lib/load-image/load-image-exif-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/load-image/load-image-exif-map.js -------------------------------------------------------------------------------- /lib/load-image/load-image-exif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/load-image/load-image-exif.js -------------------------------------------------------------------------------- /lib/load-image/load-image-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/load-image/load-image-meta.js -------------------------------------------------------------------------------- /lib/load-image/load-image-orientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/load-image/load-image-orientation.js -------------------------------------------------------------------------------- /lib/load-image/load-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/load-image/load-image.js -------------------------------------------------------------------------------- /lib/photoUp.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/photoUp.coffee -------------------------------------------------------------------------------- /lib/photoUp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/photoUp.css -------------------------------------------------------------------------------- /lib/photoUp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/photoUp.html -------------------------------------------------------------------------------- /lib/photoUp.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/photoUp.less -------------------------------------------------------------------------------- /lib/t9n/cs.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/t9n/cs.coffee -------------------------------------------------------------------------------- /lib/t9n/de.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/t9n/de.coffee -------------------------------------------------------------------------------- /lib/t9n/en.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/t9n/en.coffee -------------------------------------------------------------------------------- /lib/t9n/es.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/t9n/es.coffee -------------------------------------------------------------------------------- /lib/t9n/it.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/t9n/it.coffee -------------------------------------------------------------------------------- /lib/t9n/nl.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/t9n/nl.coffee -------------------------------------------------------------------------------- /lib/t9n/pt_BR.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/t9n/pt_BR.coffee -------------------------------------------------------------------------------- /lib/t9n/sk.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/lib/t9n/sk.coffee -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/package.js -------------------------------------------------------------------------------- /test/.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/test/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /test/.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /test/.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/test/.meteor/.id -------------------------------------------------------------------------------- /test/.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/test/.meteor/packages -------------------------------------------------------------------------------- /test/.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /test/.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.2.0.2 2 | -------------------------------------------------------------------------------- /test/.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/test/.meteor/versions -------------------------------------------------------------------------------- /test/client/photoUpTest.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/test/client/photoUpTest.coffee -------------------------------------------------------------------------------- /test/client/photoUpTest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/test/client/photoUpTest.css -------------------------------------------------------------------------------- /test/client/photoUpTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfafman/meteor-photo-up/HEAD/test/client/photoUpTest.html --------------------------------------------------------------------------------