Spaces:
Running
Running
File size: 441 Bytes
aa7ede5 | 1 2 3 4 5 6 7 8 9 10 | // Dirty version indicator
console.log("Dirty version loaded");
// Add any additional dirty functionality here
document.addEventListener('DOMContentLoaded', function() {
const dirtyIndicator = document.createElement('div');
dirtyIndicator.className = 'fixed top-4 right-4 bg-red-500 text-white px-3 py-1 rounded-full text-xs font-bold z-50';
dirtyIndicator.textContent = 'DIRTY BUILD';
document.body.appendChild(dirtyIndicator);
}); |