From 8255683714174c02ed158e61a1a2fc383da75eae Mon Sep 17 00:00:00 2001 From: CodeDevMLH <145071728+CodeDevMLH@users.noreply.github.com> Date: Tue, 24 Feb 2026 19:25:03 +0100 Subject: [PATCH] Refactor observer configuration in summer.js: format observer options for improved readability --- Jellyfin.Plugin.Seasonals/Web/summer.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Jellyfin.Plugin.Seasonals/Web/summer.js b/Jellyfin.Plugin.Seasonals/Web/summer.js index 6ce5dd9..ef6c9cf 100644 --- a/Jellyfin.Plugin.Seasonals/Web/summer.js +++ b/Jellyfin.Plugin.Seasonals/Web/summer.js @@ -34,8 +34,11 @@ function toggleSummer() { } const observer = new MutationObserver(toggleSummer); -observer.observe(document.body, { childList: true, subtree: true, attributes: true }); - +observer.observe(document.body, { + childList: true, + subtree: true, + attributes: true +}); function createBubble(container, isDust = false) { const bubble = document.createElement('div');