()
| 986 | |
| 987 | // Gets the size of the available screen |
| 988 | _screenSize() { |
| 989 | let r = this._screen.getBoundingClientRect(); |
| 990 | return { w: r.width, h: r.height }; |
| 991 | } |
| 992 | |
| 993 | _fixScrollbars() { |
| 994 | // This is a hack because Safari on macOS screws up the calculation |
no outgoing calls
no test coverage detected