MCPcopy Create free account
hub / github.com/astercloud/aster / appendPhaseLine

Function appendPhaseLine

examples/plan-explore-ui/static/main.js:28–35  ·  view source on GitHub ↗
(text, className)

Source from the content-addressed store, hash-verified

26 }
27
28 function appendPhaseLine(text, className) {
29 const line = document.createElement("div");
30 line.className = `phase-line ${className || ""}`;
31 line.textContent = text;
32 phasesEl.appendChild(line);
33 phasesEl.scrollTop = phasesEl.scrollHeight;
34 return line;
35 }
36
37 function appendToLastLine(text) {
38 if (phasesEl.lastElementChild) {

Callers 4

startRunFunction · 0.85
pumpFunction · 0.85
renderUIEventFunction · 0.85
renderToolStartWebFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected