mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 12:35:56 +00:00
toggleMark, togglePub: abort when there is no image to work on
This commit is contained in:
@@ -535,6 +535,9 @@ function toggleMark(id, client_only, no_effects) {
|
||||
}
|
||||
|
||||
var mark_img = document.getElementById("FMPIC-" + id);
|
||||
|
||||
if (!mark_img) return;
|
||||
|
||||
var vfeedu = document.getElementById("FEEDU--1");
|
||||
var crow = document.getElementById("RROW-" + id);
|
||||
|
||||
@@ -586,6 +589,9 @@ function togglePub(id, client_only, no_effects) {
|
||||
}
|
||||
|
||||
var mark_img = document.getElementById("FPPIC-" + id);
|
||||
|
||||
if (!mark_img) return;
|
||||
|
||||
var vfeedu = document.getElementById("FEEDU--2");
|
||||
var crow = document.getElementById("RROW-" + id);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user