Get rid of some buggy alert.hide()

Former-commit-id: 43c41b997ee563349278a339dd6bdfa273d69c19 [formerly 8bea9011720f74dd8412b8bcc8dcfbd3c7769e6d]
Former-commit-id: cd3784683797bac72c8eb38b550b4d0848519b62
This commit is contained in:
Jaifroid 2019-08-02 18:21:49 +01:00
parent 7378e01a37
commit 6f68dcad8c

View File

@ -2724,7 +2724,7 @@ define(['jquery', 'zimArchiveLoader', 'uiUtil', 'util', 'utf8', 'images', 'cooki
$('#articleContent').contents().remove(); $('#articleContent').contents().remove();
// Remove from DOM any download alert box that was activated in uiUtil.displayFileDownloadAlert function // Remove from DOM any download alert box that was activated in uiUtil.displayFileDownloadAlert function
$('#downloadAlert').alert('close'); $('.alert').hide();
var iframeArticleContent = document.getElementById('articleContent'); var iframeArticleContent = document.getElementById('articleContent');
@ -3213,7 +3213,7 @@ define(['jquery', 'zimArchiveLoader', 'uiUtil', 'util', 'utf8', 'images', 'cooki
}); });
} else { } else {
params.isLandingPage = false; params.isLandingPage = false;
$('#activeContent').alert('close'); $('.alert').hide();
readArticle(dirEntry); readArticle(dirEntry);
} }
}).fail(function () { }).fail(function () {