Skip to content

Instantly share code, notes, and snippets.

@imgVOID
Created April 25, 2021 17:35
Show Gist options
  • Save imgVOID/f528591096ec3bda01bc56a03aa3aa9c to your computer and use it in GitHub Desktop.
Save imgVOID/f528591096ec3bda01bc56a03aa3aa9c to your computer and use it in GitHub Desktop.
helloworld_js = """
function helloworld(div_id, data){
comm = new CommAPI("get_hello", (ret) => {
document.querySelector(div_id).textContent = ret.text;
});
setInterval(() => {comm.call({})}, 1000);
comm.call({});
}
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment