Mali bugfix in gitignore za pyc
This commit is contained in:
12
.gitignore
vendored
12
.gitignore
vendored
@@ -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
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user