1
0

auto-git:

[change] renderer.js
This commit is contained in:
2025-05-26 06:42:28 +02:00
parent 342f261cca
commit ab5ac8a060

View File

@@ -21,6 +21,7 @@ window.addEventListener('DOMContentLoaded', async () => {
} }
}); });
// Drag and Drop // Drag and Drop
document.body.addEventListener('dragover', e => { document.body.addEventListener('dragover', e => {
e.preventDefault(); e.preventDefault();
@@ -701,8 +702,7 @@ folders.forEach(folderObj => {
}); });
window.updateCatGlow = function(commitCount) { window.updateCatGlow = function(commitCount) {
// Übergib den Wert an animeCat.js if (window.cat) window.cat.animateCatGlow(commitCount);
if (window.animateCatGlow) window.animateCatGlow(commitCount);
}; };