From 8e08ffe3a1bec1a50239f307c9acba222fe43d67 Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Fri, 21 Feb 2025 23:23:12 +0100 Subject: [PATCH] [mirotalksfu] - #194 Remove unused method --- public/js/VirtualBackground.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/public/js/VirtualBackground.js b/public/js/VirtualBackground.js index 2c8433a4..3b53395c 100644 --- a/public/js/VirtualBackground.js +++ b/public/js/VirtualBackground.js @@ -297,17 +297,4 @@ class VirtualBackground { } }); } - - animateGifBackground() { - // Continuously update the GIF frame for animation - if (!this.gifAnimation) return; - - const updateFrame = () => { - if (this.gifAnimation && this.gifCanvas) { - this.currentGifFrame = this.gifCanvas; - } - requestAnimationFrame(updateFrame); - }; - updateFrame(); - } }