1
0
mirror of https://gitlab.com/brutaldon/brutaldon.git synced 2024-09-28 15:55:54 -04:00

Fix accessibility issue with expand CW button

This commit is contained in:
Jason McBrayer 2019-11-08 10:38:46 -05:00
parent f6d0cfee61
commit ecdaabff33

View File

@ -72,7 +72,7 @@ function expandCWButtonPrepare()
{
var theButton = document.querySelector('#expandCWs');
if (!theButton) {
theButton = document.createElement('p');
theButton = document.createElement('button');
theButton.id = "expandCWs";
theButton.textContent = "Expand CWs";
theButton.classList.toggle('button');