()
| 20 | 'data-receiving-progress': alias('peer.transfer.receivingProgress'), |
| 21 | |
| 22 | toggleTransferCompletedClass() { |
| 23 | const className = 'transfer-completed'; |
| 24 | |
| 25 | later( |
| 26 | this, |
| 27 | function toggleClass() { |
| 28 | $(this.element) |
| 29 | .parent('.avatar') |
| 30 | .addClass(className) |
| 31 | .delay(2000) |
| 32 | .queue(function removeClass() { |
| 33 | $(this).removeClass(className).dequeue(); |
| 34 | }); |
| 35 | }, |
| 36 | 250, |
| 37 | ); |
| 38 | }, |
| 39 | |
| 40 | init(...args) { |
| 41 | this._super(args); |
nothing calls this directly
no outgoing calls
no test coverage detected