Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 428 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 428 Bytes

angular-dropzone

================

AngularJS directive for Dropzone.js

Installation

bower install angular-dropzone

Usage

html

<form class="dropzone" method="post" enctype="multipart/form-data" ng-dropzone dropzone="dropzone" dropzone-config="dropzoneConfig">
  <input name="file" type="file" multiple />
</form>

js

$scope.dropzoneConfig = {
  parallelUploads: 3,
  maxFileSize: 30
};