Spaces:
Running
Running
Sebastiankay
commited on
Commit
•
8a73ac5
1
Parent(s):
bb17d08
24. Sept. 2024, 21:59
Browse files- _res/_custom.js +15 -6
_res/_custom.js
CHANGED
@@ -122,12 +122,21 @@ function gradioCustomJS() {
|
|
122 |
alertModalElemButton.addEventListener("click", () => {
|
123 |
oldText = alertModalElemSpan.textContent
|
124 |
alertModalElemButton.disabled = true
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
})
|
132 |
|
133 |
const prompt_input = document.querySelector("#prompt_input")
|
|
|
122 |
alertModalElemButton.addEventListener("click", () => {
|
123 |
oldText = alertModalElemSpan.textContent
|
124 |
alertModalElemButton.disabled = true
|
125 |
+
if (alertModalElemButton.textContent == "Noch mal?") {
|
126 |
+
alertModalElemSpan.innerHTML = 'Na gut, noch mal. Der "Ok" ... Mooment, der "Noch mal?" Button ändert nur diesen Text. 😉<br/>In 8 Sekunden wird wieder die ursprüngliche Meldung gezeigt. Cool oder?'
|
127 |
+
setTimeout(() => {
|
128 |
+
alertModalElemSpan.textContent = oldText
|
129 |
+
alertModalElemButton.disabled = false
|
130 |
+
alertModalElemButton.textContent = "Noch mal?"
|
131 |
+
}, 8000)
|
132 |
+
} else if (alertModalElemButton.textContent == "Ok") {
|
133 |
+
alertModalElemSpan.innerHTML = 'Der "Ok" Button ändert nur diesen Text. 🫢<br/>In 4 Sekunden wird wieder die ursprüngliche Meldung gezeigt. Cool oder?'
|
134 |
+
setTimeout(() => {
|
135 |
+
alertModalElemSpan.textContent = oldText
|
136 |
+
alertModalElemButton.disabled = false
|
137 |
+
alertModalElemButton.textContent = "Noch mal?"
|
138 |
+
}, 4000)
|
139 |
+
}
|
140 |
})
|
141 |
|
142 |
const prompt_input = document.querySelector("#prompt_input")
|