(e)
| 6316 | removeOutsideCover(); |
| 6317 | removeOverCanvas(); |
| 6318 | } |
| 6319 | function apply() { |
| 6320 | const mode = getMode(); |
| 6321 | if (mode === "off") { |
| 6322 | removeAll(); |
| 6323 | return; |
| 6324 | } |
| 6325 | if (mode === "overCanvas") { |
| 6326 | removeTrackInfoCover(); |
| 6327 | removeOutsideCover(); |
| 6328 | if (!isNpvVisible()) { |
| 6329 | removeOverCanvas(); |
| 6330 | return; |
| 6331 | } |
| 6332 | applyOverCanvas(); |
| 6333 | return; |
nothing calls this directly
no test coverage detected