()
| 212 | } |
| 213 | |
| 214 | constructor () { |
| 215 | super(...arguments) |
| 216 | this.playFile = this.playFile.bind(this) |
| 217 | this.stopFile = this.stopFile.bind(this) |
| 218 | this.onFileChosen = this.onFileChosen.bind(this) |
| 219 | this.onFileUploaded = this.onFileUploaded.bind(this) |
| 220 | initializeFilePicker() |
| 221 | } |
| 222 | |
| 223 | onClick (e) { |
| 224 | if ($(e.target).closest('.btn').length) { return } |
nothing calls this directly
no test coverage detected