Methods
abort()
Abort a load.
- Source
getDefaultCharacterSet() → {string}
Get the default character set.
- Source
The default character set.
- Type:
- string
load(data)
Load a list of files.
Name | Type | Description |
---|---|---|
data | Array.<File> | The list of files to load. |
- Source
onabort(_event)
Handle an abort event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The abort event. |
- Source
onerror(_event)
Handle an error event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The error event. |
- Source
onload(_event)
Handle a load event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The load event fired when a file has been loaded successfully. |
- Source
onloadend(_event)
Handle a load end event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The load end event fired when a file load has completed, successfully or not. |
- Source
onloaditem(_event)
Handle a load item event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The load item event fired when a file item has been loaded successfully. |
- Source
onloadstart(_event)
Handle a load start event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The load start event. |
- Source
onprogress(_event)
Handle a load progress event. Default does nothing.
Name | Type | Description |
---|---|---|
_event | object | The progress event. |
- Source
setDefaultCharacterSet(characterSet)
Set the default character set.
Name | Type | Description |
---|---|---|
characterSet | string | The character set. |
- Source