From 99df3f3ec9203320a994ba6a574a0296cd49f6c8 Mon Sep 17 00:00:00 2001 From: Porfirio Date: Mon, 9 Sep 2024 16:08:52 +0100 Subject: [PATCH] Proxy commitStyles The `commitStyles` is missing from ProxyAnimation --- src/proxy-animation.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/proxy-animation.js b/src/proxy-animation.js index 0c13bc3..8975081 100644 --- a/src/proxy-animation.js +++ b/src/proxy-animation.js @@ -1817,6 +1817,10 @@ export class ProxyAnimation { proxyAnimations.get(this).animation.persist(); } + commitStyles() { + proxyAnimations.get(this).animation.commitStyles(); + } + get id() { return proxyAnimations.get(this).animation.id; }