(form: HTMLElement, inputs: TweenFormInputs)
| 711 | } |
| 712 | |
| 713 | function submitAddTween(form: HTMLElement, inputs: TweenFormInputs) { |
| 714 | if (!comp || !selectedId) return; |
| 715 | const tween = readTweenSpecFromForm(inputs); |
| 716 | lastTweenId = comp.addGsapTween(selectedId, tween); |
| 717 | logEntry("op", { addGsapTween: { target: selectedId, tween, id: lastTweenId } }); |
| 718 | form.classList.remove("open"); |
| 719 | renderInspectorContent(); |
| 720 | } |
| 721 | |
| 722 | // ── Ops tab (raw SDK test panel) ────────────────────────────────────────────── |
| 723 |
no test coverage detected