Merge pull request #825 from hgiesel/mathjax3plus2

Switch from jQuery pre 3.0.0 pseudo promises to ES6 promises for ts hooks
This commit is contained in:
Damien Elmes 2020-11-16 11:44:21 +10:00 committed by GitHub
commit f65f101a16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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