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

remove getSelectedTableRowIds (Tables.getSelected)

This commit is contained in:
Andrew Dolgov
2018-12-02 10:46:09 +03:00
parent 874560db54
commit aa2f119eb6
2 changed files with 21 additions and 20 deletions

View File

@@ -314,7 +314,7 @@ function getSelectedLabels() {
}
function getSelectedUsers() {
return getSelectedTableRowIds("prefUserList");
return Tables.getSelected("prefUserList");
}
function getSelectedFeeds() {
@@ -832,7 +832,7 @@ function showInactiveFeeds() {
title: __("Feeds without recent updates"),
style: "width: 600px",
getSelectedFeeds: function () {
return getSelectedTableRowIds("prefInactiveFeedList");
return Tables.getSelected("prefInactiveFeedList");
},
removeSelected: function () {
const sel_rows = this.getSelectedFeeds();
@@ -922,7 +922,7 @@ function editProfiles() {
title: __("Settings Profiles"),
style: "width: 600px",
getSelectedProfiles: function () {
return getSelectedTableRowIds("prefFeedProfileList");
return Tables.getSelected("prefFeedProfileList");
},
removeSelected: function () {
const sel_rows = this.getSelectedProfiles();