Skip to content

Commit c71c4d4

Browse files
committed
Update README.md
1 parent 72950cc commit c71c4d4

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
@@ -70,14 +70,15 @@ var MyCtrl = [ '$scope', '$upload', function($scope, $upload) {
7070
}];
7171
```
7272

73-
Note: `angular.file-upload-shim.js` must be loaded before `angular.js` and is only needed if you are supporting non-HTML5 FormData browsers or you need the support for upload progress or cancel.
73+
**Note**: `angular.file-upload-shim.js` must be loaded before `angular.js` and is only needed if you are supporting non-HTML5 FormData browsers or you need the support for upload progress or cancel.
7474

7575
Multiple files: Only for HTML5 browsers (not IE8-9) if you pass an array of files to `file` option it will upload all of them together. The formData file name will have the index appended to it (i.e. `file1`).
7676

7777
## Old browsers
7878

7979
For browsers not supporting HTML5 FormData (IE8, IE9, ...) [FileAPI](https://github.com/mailru/FileAPI) module is used.
8080
For these browsers these two files are needed: **`FileAPI.min.js`, `FileAPI.flash.swf`** which will be loaded if the browser does not supports HTML5 FormData (no extra load for HTML5 browsers).
81+
8182
**Note**: Flash needs to be installed on the client browser since `FileAPI` uses Flash to upload files.
8283

8384
You can put these two files beside `angular-file-upload-shim(.min).js` on your server to be loaded automatically on demand or use the following script to set the FileAPI load path (optional):

0 commit comments

Comments
 (0)