diff options
| author | Karan Jayachandra <karan.jayachandra@nxp.com> | 2025-11-13 16:57:32 +0100 |
|---|---|---|
| committer | Karan Jayachandra <karan.jayachandra@nxp.com> | 2025-11-13 16:57:32 +0100 |
| commit | 33c3c6d7dc89187c08ec0775bbad8aaccb85d086 (patch) | |
| tree | ab3183c231402b46a91605fb0ee7d3c03d255f8c /utils.mjs | |
| parent | 05d2f2f943921d6b5c921686c5edce6eb39d23b8 (diff) | |
Only guests need to be implemented to merge to main
Diffstat (limited to 'utils.mjs')
| -rw-r--r-- | utils.mjs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |
