mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 11:05:55 +00:00
fix various actions failing when tried on an empty (e.g. no articles) headlines buffer
This commit is contained in:
@@ -867,7 +867,7 @@ function selectTableRowsByIdPrefix(content_id, prefix, check_prefix, do_select,
|
||||
var content = $(content_id);
|
||||
|
||||
if (!content) {
|
||||
alert("[selectTableRows] Element " + content_id + " not found.");
|
||||
debug("[selectTableRows] Element " + content_id + " not found.");
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -915,8 +915,8 @@ function getSelectedTableRowIds(content_id, prefix) {
|
||||
var content = $(content_id);
|
||||
|
||||
if (!content) {
|
||||
alert("[getSelectedTableRowIds] Element " + content_id + " not found.");
|
||||
return;
|
||||
debug("[getSelectedTableRowIds] Element " + content_id + " not found.");
|
||||
return new Array();
|
||||
}
|
||||
|
||||
var sel_rows = new Array();
|
||||
|
||||
Reference in New Issue
Block a user