()
| 125 | |
| 126 | private mode: "smooth" | "disable" | "default" = "smooth" |
| 127 | get scrollMode(){ |
| 128 | return this.mode |
| 129 | } |
| 130 | set scrollMode(scrollMode: "smooth" | "disable" | "default"){ |
| 131 | document.documentElement.classList.remove(`-${this.mode}`) |
| 132 | this.mode = scrollMode |
nothing calls this directly
no outgoing calls
no test coverage detected