()
| 208 | } |
| 209 | |
| 210 | _onTransferCompleted() { |
| 211 | this._onDownloadProgress(1); |
| 212 | this._reader = null; |
| 213 | this._busy = false; |
| 214 | this._dequeueFile(); |
| 215 | Events.fire('notify-user', 'File transfer completed.'); |
| 216 | } |
| 217 | |
| 218 | sendText(text) { |
| 219 | const unescaped = btoa(unescape(encodeURIComponent(text))); |
no test coverage detected