dirtypiglet / script.js
thetwistedpixie's picture
Dirtier
aa7ede5 verified
raw
history blame contribute delete
441 Bytes
// 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);
});