Skip to content

Commit

Permalink
small
Browse files Browse the repository at this point in the history
  • Loading branch information
eyaler committed Nov 28, 2024
1 parent 50bd8d1 commit cb494f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resen/fateful/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ body {
}

#filler {
background: linear-gradient(#B3E5FC, #3649b3 1000px);
background: linear-gradient(#B3E5FC, #425cfc 1000px);
flex: 0 0 0;
}

Expand Down
2 changes: 1 addition & 1 deletion resen/kaddish/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cb494f8

Please sign in to comment.