sandbochs / angular-dropzone

AngularJS directive for Dropzone.js
MIT License
43 stars 25 forks source link

Remove jQuery dependency #3

Closed mihkelambre closed 10 years ago

mihkelambre commented 10 years ago

line 21:

var dropzone = new Dropzone(element.get(0), scope.dropzoneConfig);

to

var dropzone = new Dropzone(element[0], scope.dropzoneConfig);

sandbochs commented 10 years ago

Removed jQuery dependency in PR: https://github.com/sandbochs/angular-dropzone/pull/5. Thanks for pointing this out.