Merge branch 'master' into 'master'

added title tag to a/button HTML element

See merge request mmueller/soundboard!2
This commit is contained in:
Müller 2017-11-07 10:52:40 +00:00
commit 3b9786d8eb
2 changed files with 2 additions and 1 deletions

View File

@ -102,6 +102,7 @@ function addKeyListeners() {
source.classList.remove("sound-pressed"); source.classList.remove("sound-pressed");
} }
}); });
}); });
} }

View File

@ -42,7 +42,7 @@
<div id="reset"></div> <div id="reset"></div>
</div> </div>
{% for sound in sounds %} {% for sound in sounds %}
<div class="sound"><a tabindex="0" class="unselectable" onclick="playSound('{{ sound | urlencode }}');">{{ sound.split('.', 1)[0] }}</a></div> <div class="sound"><a title="{{ sound.split('.', 1)[0] }}" tabindex="0" class="unselectable" onclick="playSound('{{ sound | urlencode }}');">{{ sound.split('.', 1)[0] }}</a></div>
{% endfor %} {% endfor %}
</section> </section>
<section id="streams" style="display:none;"> <section id="streams" style="display:none;">