File size: 600 Bytes
3a1d71c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
let prevTextAreaValue = '';
let isTextAreaVisible = true;
onUiUpdate(function() {
const textArea = gradioApp().querySelectorAll('#tab_batchlinks textarea')?.[2];
const textAreaValue = textArea ? textArea.value : '';
if (isTextAreaVisible && textAreaValue.startsWith('All done!') && prevTextAreaValue !== textAreaValue) {
gradioApp().querySelector('#finish_audio audio')?.play();
}
if (!textArea) {
isTextAreaVisible = false;
} else if (textArea.style.display !== 'none') {
isTextAreaVisible = true;
}
prevTextAreaValue = textAreaValue;
});
|