Turn the spinner off after a refresh fails.

This commit is contained in:
voussoir 2021-10-31 12:51:50 -07:00
parent a03ee5de90
commit 3fb2a63185
No known key found for this signature in database
GPG key ID: 5F7554F8C26DACCB

View file

@ -611,6 +611,10 @@ function refresh_channel_callback(response)
else
{
alert(JSON.stringify(response));
for (let button of document.getElementsByClassName("refresh_button"))
{
window[button.dataset.spinnerCloser]();
}
}
}