Skip to content

Commit 72d7e8d

Browse files
committed
Update README.md
1 parent f259919 commit 72d7e8d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ var MyCtrl = [ '$scope', '$upload', function($scope, $upload) {
7676

7777
**Upload multiple files**: Only for HTML5 FormData browsers (not IE8-9) if you pass an array of files to `file` option it will upload all of them together in one request. The formData file name will have the index appended to it (i.e. `file0`, `file1`, etc.). If you want it cross browser you need to iterate through files and upload them one by one like the code above.
7878

79-
You can also use `$upload.http` to send the file content or any data to the server while being able to listen to progress event. See [#88](https://github.com/danialfarid/angular-file-upload/issues/88) for more details.
79+
You can also use `$upload.http()` to send the file binary or any data to the server while being able to listen to progress event. See [#88](https://github.com/danialfarid/angular-file-upload/issues/88) for more details.
80+
This enables angular $http() to listen to progress event for HTML5 browsers.
8081

8182
## Old browsers
8283

0 commit comments

Comments
 (0)