This commit is contained in:
kek7198 2021-12-21 22:35:21 -06:00
parent 56164d4e0d
commit f8b9b508f5
3 changed files with 9 additions and 3 deletions

View file

@ -250,10 +250,10 @@ document.onpaste = function(event) {
function poll_vote(cid, parentid) {
for(let el of document.getElementsByClassName('presult-'+parentid)) {
el.classList.remove('d-none');
el.classList.remove('hidden');
}
for(let el of document.getElementsByClassName('presult')) {
el.classList.remove('d-none');
el.classList.remove('hidden');
}
var type = document.getElementById(cid).checked;
var scoretext = document.getElementById('poll-' + cid);