()
| 364 | } |
| 365 | |
| 366 | updateClientSize() { |
| 367 | this.clientWidth = window.innerWidth |
| 368 | || document.documentElement.clientWidth |
| 369 | || document.body.clientWidth; |
| 370 | |
| 371 | this.clientHeight = window.innerHeight |
| 372 | || document.documentElement.clientHeight |
| 373 | || document.body.clientHeight; |
| 374 | } |
| 375 | |
| 376 | onWindowResize() { |
| 377 | this.updateGlareSize(); |
no outgoing calls
no test coverage detected