(...args)
| 46 | }, |
| 47 | |
| 48 | didInsertElement(...args) { |
| 49 | this._super(args); |
| 50 | const { peer } = this; |
| 51 | |
| 52 | peer.on('didReceiveFile', this.toggleTransferCompletedClass); |
| 53 | peer.on('didSendFile', this.toggleTransferCompletedClass); |
| 54 | }, |
| 55 | |
| 56 | willDestroyElement(...args) { |
| 57 | this._super(args); |
nothing calls this directly
no outgoing calls
no test coverage detected