When showing the animation, set display to inline-block instead of inline, otherwise the animation won't start

This commit is contained in:
Nir Peled 2022-04-01 19:29:13 -04:00
parent 4810936eaa
commit 409eccec84

View File

@ -470,7 +470,7 @@
}
document.getElementById('check-mark').style.display = 'none';
document.getElementById('hourglass').style.display = 'inline';
document.getElementById('hourglass').style.display = 'inline-block';
xhr.send(query);
}