@wendongfly/myhi 1.3.75 → 1.3.77
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/dist/chat.html +2 -0
- package/dist/index.js +1 -1
- package/dist/index.min.js +112 -112
- package/package.json +1 -1
package/dist/chat.html
CHANGED
|
@@ -3243,6 +3243,7 @@
|
|
|
3243
3243
|
window.vaDirectSend = function() {
|
|
3244
3244
|
if (_vaLines.length === 0) { _vaSetStatus('请先录入语音内容'); return; }
|
|
3245
3245
|
cmdInput.value = _vaLines.join('\n');
|
|
3246
|
+
window.vaClear();
|
|
3246
3247
|
window.closeVaSheet();
|
|
3247
3248
|
if (!_isTouchDevice()) cmdInput.focus();
|
|
3248
3249
|
};
|
|
@@ -3277,6 +3278,7 @@
|
|
|
3277
3278
|
const text = document.getElementById('va-result').value.trim();
|
|
3278
3279
|
if (!text) return;
|
|
3279
3280
|
cmdInput.value = text;
|
|
3281
|
+
window.vaClear();
|
|
3280
3282
|
window.closeVaSheet();
|
|
3281
3283
|
if (!_isTouchDevice()) cmdInput.focus();
|
|
3282
3284
|
};
|