forked from server/soundboard
Merge branch 'master' into 'master'
added title tag to a/button HTML element See merge request mmueller/soundboard!2
This commit is contained in:
commit
3b9786d8eb
@ -102,6 +102,7 @@ function addKeyListeners() {
|
|||||||
source.classList.remove("sound-pressed");
|
source.classList.remove("sound-pressed");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -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;">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user