manimator / static /script.js
theminji's picture
Upload 7 files
0ea56ae verified
raw
history blame contribute delete
317 Bytes
document.addEventListener("DOMContentLoaded", function() {
const form = document.getElementById('promptForm');
form.addEventListener('submit', function() {
// Display the loading overlay when the form is submitted.
document.getElementById("loading").style.display = "flex";
});
});