| 239 | } |
| 240 | |
| 241 | function toggleStreaming() { |
| 242 | isStreaming = !isStreaming; |
| 243 | if (isStreaming) { |
| 244 | tickSimulator.start(); |
| 245 | document.getElementById('toggle-btn')!.textContent = '⏸ Pause'; |
| 246 | document.getElementById('toggle-btn')!.classList.add('active'); |
| 247 | } else { |
| 248 | tickSimulator.stop(); |
| 249 | document.getElementById('toggle-btn')!.textContent = '▶ Start'; |
| 250 | document.getElementById('toggle-btn')!.classList.remove('active'); |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | function toggleAutoScroll() { |
| 255 | autoScrollEnabled = !autoScrollEnabled; |