aboutsummaryrefslogtreecommitdiff
path: root/utils.mjs
diff options
context:
space:
mode:
authorKaran Jayachandra <karan.jayachandra@nxp.com>2025-11-13 16:57:32 +0100
committerKaran Jayachandra <karan.jayachandra@nxp.com>2025-11-13 16:57:32 +0100
commit33c3c6d7dc89187c08ec0775bbad8aaccb85d086 (patch)
treeab3183c231402b46a91605fb0ee7d3c03d255f8c /utils.mjs
parent05d2f2f943921d6b5c921686c5edce6eb39d23b8 (diff)
Only guests need to be implemented to merge to main
Diffstat (limited to 'utils.mjs')
-rw-r--r--utils.mjs3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils.mjs b/utils.mjs
index 62569e4..06a2519 100644
--- a/utils.mjs
+++ b/utils.mjs
@@ -16,8 +16,9 @@ export class Manager {
.join("");
let elementId = this.description + "_list";
document.getElementById(elementId).innerHTML = renderedHTML;
+ this.addBehaviour();
}
- addToggleBehaviour() {
+ addBehaviour() {
for (let idx = 0; idx < this.listData.length; ++idx) {
const elementId = this.description + "_" + this.listData[idx].id;
const p = document.getElementById(elementId);