forked from server/soundboard
added title tag to a/button HTML element
This commit is contained in:
parent
577e625a51
commit
c9eff2d77d
@ -102,6 +102,7 @@ function addKeyListeners() {
|
||||
source.classList.remove("sound-pressed");
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@ -42,7 +42,7 @@
|
||||
<div id="reset">✕</div>
|
||||
</div>
|
||||
{% 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 %}
|
||||
</section>
|
||||
<section id="streams" style="display:none;">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user