(e)
| 155 | document.body.appendChild(overlay); |
| 156 | |
| 157 | function clickToMagnify(e) { |
| 158 | overlay.remove(); |
| 159 | removeNoti(); |
| 160 | try { |
| 161 | magnifyImage(e.clientX, e.clientY); |
| 162 | } catch (e) { |
| 163 | console.log(e); |
| 164 | } |
| 165 | } |
| 166 | overlay.addEventListener("click", clickToMagnify); |
| 167 | }, |
| 168 |
nothing calls this directly
no test coverage detected