Files
Varaverk/claude-data/file-history/d6d51683-5f05-41b4-ad5d-afbe06985ad9/4fe9a9467410b49b@v1
T

10 lines
299 B
Plaintext

// Varaverk — shared JS utilities
// Page-specific JS lives inline in each page partial.
// Flash a status element briefly then fade
function vvFlashStatus(el, msg, ok) {
el.textContent = msg;
el.style.color = ok ? '#4caf50' : '#f44336';
setTimeout(() => { el.textContent = ''; }, 3000);
}