Skip to content

Commit 9931082

Browse files
committed
Upgrade to release v4.1.4
1 parent 9c35733 commit 9931082

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

README.md

+12-11
Original file line numberDiff line numberDiff line change
@@ -863,8 +863,9 @@ This event is triggered when a client validation error is encountered for an upl
863863
Additional parameters available are:
864864

865865
- `file`: the file object instance
866-
- `previewId`: the identifier for the preview file container.
866+
- `previewId`: the identifier for the preview file container
867867
- `index`: the zero-based sequential index of the loaded file in the preview list
868+
- `reader`: the FileReader instance if available
868869

869870
**Example:**
870871
```js
@@ -878,9 +879,9 @@ This event is triggered after a file is loaded in the preview. Additional parame
878879
are:
879880

880881
- `file`: the file object instance
881-
- `previewId`: the identifier for the preview file container.
882+
- `previewId`: the identifier for the preview file container
882883
- `index`: the zero-based sequential index of the loaded file in the preview list
883-
- `reader`: the FileReader instance if available.
884+
- `reader`: the FileReader instance if available
884885

885886
**Example:**
886887
```js
@@ -902,7 +903,7 @@ $('#input-id').on('filereset', function(event) {
902903
#### fileimageloaded
903904
This event is triggered when each file image is fully loaded in the preview window. This is only applicable for image file previews and if `showPreview` is set to true. Additional parameters available are:
904905

905-
- `previewId`: the identifier for the preview file container.
906+
- `previewId`: the identifier for the preview file container
906907

907908
**Example:**
908909
```js
@@ -1006,7 +1007,7 @@ This event is triggered before upload of each thumbnail file. Additional paramet
10061007
- `files`: the file stack array (or empty object if not available).
10071008
- `extra`: the `uploadExtraData` settings for the plugin (or empty object if not available).
10081009
- `response`: the data sent via ajax response (or empty object if not available).
1009-
- `reader`: the FileReader instance if available.
1010+
- `reader`: the FileReader instance if available
10101011
- `previewId`: the identifier of the preview thumbnail container.
10111012
- `index`: the zero-based index of the file in the preview container.
10121013

@@ -1027,7 +1028,7 @@ asynchronous batch uploads after each file in the selection is uploaded via ajax
10271028
- `files`: the file stack array (or empty object if not available).
10281029
- `extra`: the `uploadExtraData` settings for the plugin (or empty object if not available).
10291030
- `response`: the data sent via ajax response (or empty object if not available).
1030-
- `reader`: the FileReader instance if available.
1031+
- `reader`: the FileReader instance if available
10311032
- `previewId`: the identifier of each file's parent thumbnail div element in the preview window.
10321033
- `index`: the zero-based index of the file in the file stack.
10331034

@@ -1047,7 +1048,7 @@ This event is triggered when an upload or file input validation error is encount
10471048
- `files`: the file stack array (or empty object if not available).
10481049
- `extra`: the `uploadExtraData` settings for the plugin (or empty object if not available).
10491050
- `response`: the data sent via ajax response (or empty object if not available).
1050-
- `reader`: the FileReader instance if available.
1051+
- `reader`: the FileReader instance if available
10511052
- `previewId`: the identifier of each file's parent thumbnail div element in the preview window.
10521053
- `index`: the zero-based index of the file in the file stack.
10531054

@@ -1068,7 +1069,7 @@ Additional parameters available are:
10681069
- `files`: the file stack array (or empty object if not available).
10691070
- `extra`: the `uploadExtraData` settings for the plugin (or empty object if not available).
10701071
- `response`: the data sent via ajax response (or empty object if not available).
1071-
- `reader`: the FileReader instance if available.
1072+
- `reader`: the FileReader instance if available
10721073

10731074
```js
10741075
$('#input-id').on('filebatchpreupload', function(event, data) {
@@ -1086,7 +1087,7 @@ This event is triggered after a successful synchronous batch upload (i.e. when `
10861087
- `files`: the file stack array (or empty object if not available).
10871088
- `extra`: the `uploadExtraData` settings for the plugin (or empty object if not available).
10881089
- `response`: the data sent via ajax response (or empty object if not available).
1089-
- `reader`: the FileReader instance if available.
1090+
- `reader`: the FileReader instance if available
10901091

10911092
```js
10921093
$('#input-id').on('filebatchuploadsuccess', function(event, data) {
@@ -1104,7 +1105,7 @@ This event is triggered when any error is faced in the synchronous batch upload
11041105
- `files`: the file stack array (or empty object if not available).
11051106
- `extra`: the `uploadExtraData` settings for the plugin (or empty object if not available).
11061107
- `response`: the data sent via ajax response (or empty object if not available).
1107-
- `reader`: the FileReader instance if available.
1108+
- `reader`: the FileReader instance if available
11081109

11091110
```js
11101111
$('#input-id').on('filebatchuploaderror', function(event, data) {
@@ -1122,7 +1123,7 @@ This event is triggered after completion of either the synchronous OR asynchrono
11221123
- `files`: the file stack array (or empty object if not available).
11231124
- `extra`: the `uploadExtraData` settings for the plugin (or empty object if not available).
11241125
- `response`: the data sent via ajax response (or empty object if not available).
1125-
- `reader`: the FileReader instance if available.
1126+
- `reader`: the FileReader instance if available
11261127

11271128
```js
11281129
$('#input-id').on('filebatchuploadcomplete', function(event, data) {

0 commit comments

Comments
 (0)