@jungjaehoon/mama-os 0.3.14 → 0.3.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1604,7 +1604,7 @@
|
|
|
1604
1604
|
function updateTTSSpeed(value) {
|
|
1605
1605
|
document.getElementById('tts-speed-label').textContent = value + 'x';
|
|
1606
1606
|
document.getElementById('tts-speed-value').textContent = value + 'x';
|
|
1607
|
-
chat.
|
|
1607
|
+
chat.setTTSRate && chat.setTTSRate(parseFloat(value));
|
|
1608
1608
|
}
|
|
1609
1609
|
|
|
1610
1610
|
function toggleHandsFree() {
|
|
@@ -1612,7 +1612,7 @@
|
|
|
1612
1612
|
}
|
|
1613
1613
|
|
|
1614
1614
|
function toggleVoiceInput() {
|
|
1615
|
-
chat.
|
|
1615
|
+
chat.toggleVoice && chat.toggleVoice();
|
|
1616
1616
|
}
|
|
1617
1617
|
|
|
1618
1618
|
function filterByTopic(topic) {
|