hallisky's picture
Fix warning messages
f2a701f
raw
history blame contribute delete
No virus
740 Bytes
hide_code = """
() => {
const confirmationMessage = document.getElementById('confirmation-message');
const feedbackWarning = document.getElementById('feedback-warning');
confirmationMessage.style.display = 'block';
confirmationMessage.style.opacity = 1;
feedbackWarning.style.display = 'none';
setTimeout(() => {
confirmationMessage.style.transition = 'opacity 5s';
confirmationMessage.style.opacity = 0;
}, 1000);
setTimeout(() => {
confirmationMessage.style.display = 'none';
feedbackWarning.style.display = 'block';
}, 6200); // 2000ms for transition
}
"""
# Add CSS for the fade-out effect
hide_css = """
<style>
#confirmation-message {
opacity: 1;
}
</style>
"""