angular-dropzone icon indicating copy to clipboard operation
angular-dropzone copied to clipboard

AngularJS directive for Dropzone.js

Results 7 angular-dropzone issues
Sort by recently updated
recently updated
newest added

When adding a file in the frontend the following error appears: ``` TypeError: c[d] is undefined[Learn More] dropzone.min.js:1:1418 c.prototype.emit http://localhost:3000/bower_components/dropzone/downloads/dropzone.min.js:1:1418 b

Hey guy, How can I display the existing files for updating record ? Thank !!!!

Since dropzone.js and its events are "outside of" angular, I've found it's sometimes necessary to put a `$scope.$apply()` at the end of the dropzone event handler callbacks (such as `success`...

When the scope is destroyed, destroy (remove) the dropzone instance to avoid memory leaks. ``` javascript scope.$on('$destroy', function () { dropzone.destroy(); }); ```

Add support for CommonJS modules, and npm, for tools such as webpack. http://davidbcalhoun.com/2014/what-is-amd-commonjs-and-umd/