Merge pull request #3256 from nanogyth/patch-2

[Doc] Update Injecting HTML guide
This commit is contained in:
hydroflame 2022-03-29 11:06:58 -04:00 committed by GitHub
commit 46f23836e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -21,7 +21,7 @@ To automatically enter commands in the terminal (only works if looking at the te
terminalInput[handler].onChange({target:terminalInput}); terminalInput[handler].onChange({target:terminalInput});
// Simulate an enter press // Simulate an enter press
terminalInput[handler].onKeyDown({keyCode:13,preventDefault:()=>null}); terminalInput[handler].onKeyDown({key:'Enter',preventDefault:()=>null});
To add lines to the terminal (only works if looking at the terminal): To add lines to the terminal (only works if looking at the terminal):
@ -32,4 +32,4 @@ To add lines to the terminal (only works if looking at the terminal):
const list = document.getElementById("generic-react-container").querySelector("ul"); const list = document.getElementById("generic-react-container").querySelector("ul");
// Inject some HTML. // Inject some HTML.
list.insertAdjacentHTML('beforeend',`<li><p color=lime>whatever custom html</p></li>`) list.insertAdjacentHTML('beforeend',`<li><p color=lime>whatever custom html</p></li>`)