request failing packets

This commit is contained in:
Lewis Moten
2024-05-15 02:05:48 -04:00
parent c4a0d8afd1
commit d9b5391601
11 changed files with 187 additions and 823 deletions

View File

@@ -231,6 +231,14 @@ class BasePanel {
const element = this.getElement(id);
element.innerHTML = html;
}
getHtmlById = (id) => {
const element = this.getElement(id);
return element.innerHTML;
}
scrollToBottom = id => {
const element = this.getElement(id);
element.scrollIntoView(false);
}
getNumberById = id => {
const value = this.getValueById(id);
return parseFloat(value);