()
| 78 | } |
| 79 | |
| 80 | funcButtonLeft(): FuncButton { |
| 81 | return { |
| 82 | render: el => { |
| 83 | this.renderIcon(el, "exit", 40, 37); |
| 84 | el.classList.add("key--permanent"); |
| 85 | }, |
| 86 | onclick: () => this.auth.logout() |
| 87 | }; |
| 88 | } |
| 89 | |
| 90 | funcButtonRight(): FuncButton { |
| 91 | return { |