(aid: string)
| 603 | } |
| 604 | |
| 605 | function tweenChip(aid: string): HTMLDivElement { |
| 606 | const chip = document.createElement("div"); |
| 607 | chip.className = "tween-id"; |
| 608 | chip.title = aid; |
| 609 | chip.textContent = aid; |
| 610 | return chip; |
| 611 | } |
| 612 | |
| 613 | function addTweenToggle(): DocumentFragment { |
| 614 | const frag = document.createDocumentFragment(); |
no outgoing calls
no test coverage detected