* @param {!boolean} timed Fade after a while
()
| 494 | * @param {!boolean} timed Fade after a while |
| 495 | */ |
| 496 | function showToolbars() { |
| 497 | titlebar.classList.add('viewer-touched'); |
| 498 | toolbar.classList.add('viewer-touched'); |
| 499 | window.clearTimeout(toolbarTouchTimer); |
| 500 | toolbarTouchTimer = window.setTimeout(function () { |
| 501 | hideToolbars(); |
| 502 | }, UI_FADE_DURATION); |
| 503 | } |
| 504 | |
| 505 | function hideToolbars() { |
| 506 | titlebar.classList.remove('viewer-touched'); |
no test coverage detected