EmberDroplet
EmberDroplet copied to clipboard
Ember.js HTML5 file uploading with drag & drop and image/file preview.
Fix deprecations: * `Ember.merge` usage * Setting dependency keys using the `.property()` modifier * Calling `Ember.removeListener` without specifying method argument
No matter what I do server-side, the `uploadStatus.error` object will have all values `undefined`. This is on Ember 2.4.3. This may be a jquery issue (I am on 2.14). It...
`requestPostData` property is set together with setting `options` property in [`init()` function](https://github.com/Wildhoney/EmberDroplet/blob/e03eaa2c9da84c19e9dc2409575d04353de714f7/components/Droplet.js#L272). This makes it complicated to have `requestPostData` as computed property. Following code does not work: ``` js export...
I know this is a hard problem, but I would like to be able to exclude directories from the upload while still allowing all types of files to be uploaded....
Background (May not be relevant): I have a `Droplet.SingleInput` nested in a `Droplet.Area`. I am hiding the `SingleInput` so I can have a custom styled `input`. I trigger clicks on...
Would be nice with information about the browser support in the readme =)
How can I hook into the file upload process. Can I override an action on the controller to manage what is done with the response? Perhaps a callback on the...
I don't know if I am missing something, but from what I have read an action cannot return a result, however your action appears to be attempting to return a...
I've needed to hack around EmberDroplet to work how we need it, which is as follows: 1. Drag file 2. Upload file instantly 3. Update Model I've look at the...