()
| 91 | } |
| 92 | |
| 93 | removeDialog() { |
| 94 | // check if dialog is active |
| 95 | if (!this.dPopup) { |
| 96 | return; |
| 97 | } |
| 98 | this.dPopup = false; |
| 99 | this.eFrame.classList.add('m-cursor'); |
| 100 | this.toggleIcon(); |
| 101 | this.eFrame.addEventListener('click', this.clickHandler); |
| 102 | } |
| 103 | |
| 104 | setFrameDim() { |
| 105 | if (this.dDialog === null) { |
nothing calls this directly
no test coverage detected