* Called upon load. * * @private
()
| 271 | * @private |
| 272 | */ |
| 273 | private _onLoad() { |
| 274 | const data = this._xhr.responseText; |
| 275 | if (data !== null) { |
| 276 | this.emitReserved("data", data); |
| 277 | this.emitReserved("success"); |
| 278 | this._cleanup(); |
| 279 | } |
| 280 | } |
| 281 | |
| 282 | /** |
| 283 | * Aborts the request. |
no test coverage detected