diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-03-05 11:09:03 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:12:55 +0100 |
commit | 198a0be104cfbcbd625bed36b57f65a970d991a9 (patch) | |
tree | 2a00683e9d853fd783581ff3bb0448126b35be6f /play.js | |
parent | c02f66b7e79e054114aaf9f2806c8d105b130270 (diff) | |
download | richard-iii-198a0be104cfbcbd625bed36b57f65a970d991a9.tar.gz |
Change create_log_entry to on_log.
Diffstat (limited to 'play.js')
-rw-r--r-- | play.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ let ui = { present: new Set(), } -create_log_entry = function (text) { +function on_log(text) { let p = document.createElement("div"); text = text.replace(/&/g, "&"); text = text.replace(/</g, "<"); |