Mali bugfix in gitignore za pyc

This commit is contained in:
2026-03-05 18:23:43 +01:00
parent 6ed45d2ebc
commit 5cafe23868
2 changed files with 14 additions and 2 deletions

12
.gitignore vendored
View File

@@ -1 +1,13 @@
# Binarna datoteke; namesto nje hranimo pesmi_export.txt, ki se ga lahko uvozi preko add_song.py
songs.db
# Prevedene datoteke
*.pyc
*.pyo
*.pyd
# Celotna mapa s predpomnilnikom (Python 3+)
__pycache__/
# Datoteke dnevnikov (logs)
*.log

View File

@@ -139,8 +139,8 @@ console.log('loadBtn listener dodan');
songNumberInput.addEventListener('keypress', (e) => { if (e.key === 'Enter') loadSong(); });
console.log('songNumberInput listener dodan');
searchBtn.addEventListener('click', searchSongs);
searchQueryInput.addEventListener('keypress', (e) => { if (e.key === 'Enter') searchSongs(); });
/* searchBtn.addEventListener('click', searchSongs);
searchQueryInput.addEventListener('keypress', (e) => { if (e.key === 'Enter') searchSongs(); }); */
capsBtn.addEventListener('click', toggleCaps);
prevBtn.addEventListener('click', prevPage);