()
| 9 | let window; |
| 10 | |
| 11 | function initApp() { |
| 12 | window.App.init({ |
| 13 | socket: io, |
| 14 | container: window.document.querySelector('.log'), |
| 15 | filterInput: window.document.querySelector('#filter'), |
| 16 | pauseBtn: window.document.querySelector('#pauseBtn'), |
| 17 | topbar: window.document.querySelector('.topbar'), |
| 18 | body: window.document.querySelector('body'), |
| 19 | }); |
| 20 | } |
| 21 | |
| 22 | function clickOnElement(line) { |
| 23 | const click = window.document.createEvent('MouseEvents'); |