This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function send(message) { | |
| var input = document.querySelector('div.pluggable-input-body.copyable-text.selectable-text'); | |
| input.innerText = message; | |
| input.dispatchEvent(new InputEvent('input', { | |
| inputType: 'insertText', | |
| data: message, | |
| bubbles: true, | |
| cancelable: false, | |
| composed: true, | |
| detail: 0, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import haxe.Timer; | |
| import tink.state.Observable; | |
| import coconut.ui.View; | |
| import coconut.ui.RenderResult; | |
| import coconut.ui.Renderer; | |
| import tink.pure.List; | |
| using tink.CoreApi; |
OlderNewer