Using AngularJS version of File Upload (https://blueimp.github.io/jQuery-File-Upload/angularjs.html) I'm trying to figure out how I can declare dropZone via HTML attributes - an equivalent of:
$(el).fileupload({
dropZone: $('.dropZone', this)
})
Using AngularJS version of File Upload (https://blueimp.github.io/jQuery-File-Upload/angularjs.html) I'm trying to figure out how I can declare dropZone via HTML attributes - an equivalent of:
$(el).fileupload({
dropZone: $('.dropZone', this)
})
On their wiki section they list an angular directive as a fork.
If you go to their usage section on their github repository, you will see that they had created a directive you can use this way:
I think that should help you.