(callback, ev)
| 93 | } |
| 94 | |
| 95 | clickHandler(callback, ev) { |
| 96 | this.eFrame.removeEventListener('click', this.clickHandler); |
| 97 | this.toggleIcon(callback); |
| 98 | this.eFrame.classList.remove('m-cursor'); |
| 99 | if (ev) { |
| 100 | ev.stopPropagation(); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | onShow() { |
| 105 | this.setFrameDim(); |
nothing calls this directly
no test coverage detected