From e8effa7dfe55581fb8e2af4b26d3fe9c1455d474 Mon Sep 17 00:00:00 2001 From: CodeDevMLH <145071728+CodeDevMLH@users.noreply.github.com> Date: Tue, 24 Feb 2026 19:19:11 +0100 Subject: [PATCH] Format observer configuration for better readability --- Jellyfin.Plugin.Seasonals/Web/cherryblossom.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Jellyfin.Plugin.Seasonals/Web/cherryblossom.js b/Jellyfin.Plugin.Seasonals/Web/cherryblossom.js index 9159589..8e4369d 100644 --- a/Jellyfin.Plugin.Seasonals/Web/cherryblossom.js +++ b/Jellyfin.Plugin.Seasonals/Web/cherryblossom.js @@ -33,7 +33,11 @@ function toggleCherryBlossom() { } const observer = new MutationObserver(toggleCherryBlossom); -observer.observe(document.body, { childList: true, subtree: true, attributes: true }); +observer.observe(document.body, { + childList: true, + subtree: true, + attributes: true +}); function createPetal(container) { const petal = document.createElement('div');