(e: Event)
| 53 | let WebGLSupport = -1; |
| 54 | |
| 55 | function disableSwipeFn(e: Event) { |
| 56 | e.preventDefault(); |
| 57 | if (typeof globalThis.scroll === "function") { |
| 58 | globalThis.scroll(0, 0); |
| 59 | } |
| 60 | return false; |
| 61 | } |
| 62 | |
| 63 | function hasLocalStorage() { |
| 64 | try { |
nothing calls this directly
no test coverage detected