diff options
| author | 2018-10-30 14:15:50 -0400 | |
|---|---|---|
| committer | 2018-10-30 14:15:50 -0400 | |
| commit | 38e3f792a4e7702b6a479470c9f61f460309c981 (patch) | |
| tree | 8611194ae17815f8b2a6794306621036f9702ce8 /p/scripts | |
| parent | be7acc0132b273961653af33abcc46a374b356a2 (diff) | |
reallow items kept unread to be interactive (#2085)
Remove .keep_unread from classes that do nothing.
Diffstat (limited to 'p/scripts')
| -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')) { |
