1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 10:45:56 +00:00

use .closest() instead of .up() to lookup parent by selector

This commit is contained in:
Andrew Dolgov
2021-02-19 07:43:05 +03:00
parent bec35200e9
commit d26269865f
3 changed files with 4 additions and 4 deletions

View File

@@ -63,7 +63,7 @@ const Article = {
}
},
setScore: function (id, pic) {
const row = pic.up("div[id*=RROW]");
const row = pic.closest("div[id*=RROW]");
if (row) {
const score_old = row.getAttribute("data-score");