When complete vote, not refresh status

This commit is contained in:
Cutls 2019-09-17 00:24:00 +09:00
parent f891b30f9f
commit fdca5b1c60

View File

@ -127,6 +127,8 @@ function voteMastodonrefresh(acct_id, id) {
var choice = choices[keyc];
if (!json.voted) {
votesel = 'voteSelMastodon(\'' + acct_id + '\',\'' + json.id + '\',' + keyc + ',' + json.multiple + ')';
}else {
votesel =""
}
poll = poll + '<div class="pointer vote vote_' + acct_id + '_' + json.id + '_' + keyc + '" onclick="' + votesel + '">' + escapeHTML(choice.title) + '<span class="vote_' + acct_id + '_' + json.id + '_result ' + result_hide + '">(' + choice.votes_count + ')</span></div>';
});