blob: 29065db787ee50384dfe3ef4df109999f3f65eff (
plain)
1
2
3
4
5
6
7
8
9
10
|
/**
* Appends a notice (hrtext divider) to the IC log.
* @param {string} msg the notice text
*/
export function appendICNotice(msg: string) {
const el = document.createElement("div");
el.className = "hrtext";
el.textContent = msg;
document.getElementById("client_log")!.appendChild(el);
}
|