()
| 5 | var shortcuts = false; |
| 6 | |
| 7 | async function loadShoShoObject() |
| 8 | { |
| 9 | if(shosho) return; |
| 10 | |
| 11 | shosho = new ShoSho({ |
| 12 | capture: true, |
| 13 | target: document, |
| 14 | }); |
| 15 | |
| 16 | shoshoMouse = new ShoSho({ |
| 17 | capture: true, |
| 18 | target: document.querySelector('.content-right'), |
| 19 | }); |
| 20 | |
| 21 | mouseWheel = new MouseWheel({ |
| 22 | capture: true, |
| 23 | target: document.querySelector('.content-right'), |
| 24 | }); |
| 25 | |
| 26 | return true; |
| 27 | } |
| 28 | |
| 29 | function inputIsFocused() |
| 30 | { |