(event)
| 70 | |
| 71 | // Handle drop events |
| 72 | dragEnter(event) { |
| 73 | this.cancelEvent(event); |
| 74 | |
| 75 | $(this.element).parent('.avatar').addClass('hover'); |
| 76 | }, |
| 77 | |
| 78 | dragOver(event) { |
| 79 | this.cancelEvent(event); |
nothing calls this directly
no outgoing calls
no test coverage detected