Fix: Clicking outside of article text area closes the article (#6241)

This commit is contained in:
maTh
2024-03-29 00:13:46 +01:00
committed by GitHub
parent 5d1493ba98
commit 75a17ff410

View File

@@ -1167,7 +1167,7 @@ function init_stream(stream) {
if (ev.target.closest('.reader, .content, .item.website, .item.link, .dropdown')) {
return true;
}
if (!context.sides_close_article && ev.target.matches('.flux_content')) {
if ((!context.sides_close_article && ev.target.matches('.flux_content')) || ev.target.closest('footer')) {
// setting for not-closing after clicking outside article area
return false;
}