Commit
·
4daef9c
1
Parent(s):
a9a59ec
update: time cursor for waiting
Browse files
app.py
CHANGED
@@ -702,7 +702,7 @@ def create_chat_interface():
|
|
702 |
document.body.classList.add('waiting');
|
703 |
setTimeout(function () {
|
704 |
document.body.classList.remove('waiting');
|
705 |
-
},
|
706 |
try {
|
707 |
iframe.src = link.href;
|
708 |
iframe.style.display = 'block'; // Show iframe on link click
|
|
|
702 |
document.body.classList.add('waiting');
|
703 |
setTimeout(function () {
|
704 |
document.body.classList.remove('waiting');
|
705 |
+
}, 2000); // Reset cursor after 1 seconds
|
706 |
try {
|
707 |
iframe.src = link.href;
|
708 |
iframe.style.display = 'block'; // Show iframe on link click
|