diff options
| author | 2014-08-23 22:41:28 +0200 | |
|---|---|---|
| committer | 2014-08-23 22:41:28 +0200 | |
| commit | d04f7ac9ea646b302b71d8cb12c108be0671b3b8 (patch) | |
| tree | cc47f62f55756bbd55dd0a55ff58c39189f83a8e | |
| parent | 662d2630e28b68279146f342ea8a2bd98e9132c0 (diff) | |
Fix bug link at article bottom not mark as read
See https://github.com/marienfressinaud/FreshRSS/issues/578
| -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 4802e0941..c37f9f6f2 100644 --- a/p/scripts/main.js +++ b/p/scripts/main.js @@ -663,7 +663,7 @@ function init_stream(divStream) { if (auto_mark_site) { divStream.on('click', '.flux .link > a', function () { - mark_read($(this).parent().parent().parent(), true); + mark_read($(this).parents(".flux"), true); }); } } |
