exit quietly if theme-song container isn't present

This commit is contained in:
John Bowdre 2024-08-04 15:16:26 -05:00
parent 0535d58b2b
commit af569eaadf

View file

@ -28,7 +28,7 @@ document.addEventListener('DOMContentLoaded', function() {
}); });
observer.observe(themeSongContainer, { childList: true }); observer.observe(themeSongContainer, { childList: true });
} else { } else {
console.Warn('Theme song container not found'); console.log("No music container here.");
} }
}); });
</script> </script>