From cb494f8eda7c4b5ab5475b1c6453866e529d4342 Mon Sep 17 00:00:00 2001 From: Eyal Gruss Date: Thu, 28 Nov 2024 22:19:52 +0200 Subject: [PATCH] small --- resen/fateful/style.css | 2 +- resen/kaddish/script.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resen/fateful/style.css b/resen/fateful/style.css index 0435986..2c8446c 100644 --- a/resen/fateful/style.css +++ b/resen/fateful/style.css @@ -46,7 +46,7 @@ body { } #filler { - background: linear-gradient(#B3E5FC, #3649b3 1000px); + background: linear-gradient(#B3E5FC, #425cfc 1000px); flex: 0 0 0; } diff --git a/resen/kaddish/script.js b/resen/kaddish/script.js index 0ac2ac1..91003b9 100644 --- a/resen/kaddish/script.js +++ b/resen/kaddish/script.js @@ -77,7 +77,7 @@ play.addEventListener('click', () => { const utter = new SpeechSynthesisUtterance([...prefix_chars, ...document.querySelectorAll('svg text:not(:empty):not(.blink)')].map((e, i) => (e.textContent ?? e) + nikud_pisuk[i]).join('')) console.log(utter.text) utter.lang = 'he' - const voice = voices.find(v => v.lang.startsWith('he') || v.lang.startsWith('iw')) + const voice = voices.find(v => v.lang.startsWith('he') || v.lang.startsWith('iw')) // Firefox Android only works with 'iw': https://bugzilla.mozilla.org/show_bug.cgi?id=1930388 if (voice) { utter.voice = voice utter.lang = voice.lang