()
| 105 | // Continuous updating while sidebar transitions or when mouse moves near the edge |
| 106 | let rafId = null; |
| 107 | function rafLoop() { |
| 108 | updateResizerPosition(); |
| 109 | rafId = requestAnimationFrame(rafLoop); |
| 110 | } |
| 111 | function startContinuousUpdate() { |
| 112 | if (!rafId) rafLoop(); |
| 113 | } |
no test coverage detected