diff options
| author | 2018-10-30 21:50:28 +0100 | |
|---|---|---|
| committer | 2018-10-30 21:50:28 +0100 | |
| commit | c708bfb648ad80da14c0746bca189f67174d68ec (patch) | |
| tree | 8611194ae17815f8b2a6794306621036f9702ce8 | |
| parent | 43e0b026579654adce48590dd1746fc8abc20a3d (diff) | |
| parent | 38e3f792a4e7702b6a479470c9f61f460309c981 (diff) | |
Merge pull request #2092 from pattems/dev
Fix for #2085
| -rw-r--r-- | p/scripts/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p/scripts/main.js b/p/scripts/main.js index f96828048..92fa8db4c 100644 --- a/p/scripts/main.js +++ b/p/scripts/main.js @@ -752,7 +752,7 @@ function init_shortcuts() { function init_stream(divStream) { divStream.on('click', '.flux_header,.flux_content', function (e) { //flux_toggle - if ($(e.target).closest('.keep_unread, .content, .item.website, .item.link, .dropdown-menu').length > 0) { + if ($(e.target).closest('.content, .item.website, .item.link, .dropdown-menu').length > 0) { return; } if (!context.sides_close_article && $(e.target).is('div.flux_content')) { |
