Merge pull request #845 from hgiesel/answerfix

Switch back to fadeTo rather than fadeIn/fadeOut
This commit is contained in:
Damien Elmes 2020-12-10 00:06:17 +10:00 committed by GitHub
commit 6967c71aad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ function _updateQA(html, fadeTime, onupdate, onshown) {
var qa = $("#qa");
// fade out current text
new Promise((resolve) => qa.fadeOut(fadeTime, () => resolve()))
new Promise((resolve) => qa.fadeTo(fadeTime, 0, () => resolve()))
// update text
.then(() => {
try {
@ -65,7 +65,7 @@ function _updateQA(html, fadeTime, onupdate, onshown) {
})
)
// and reveal when processing is done
.then(() => new Promise((resolve) => qa.fadeIn(fadeTime, () => resolve())))
.then(() => new Promise((resolve) => qa.fadeTo(fadeTime, 1, () => resolve())))
.then(() => _runHook(onShownHook))
.then(() => (_updatingQA = false));
}