summaryrefslogtreecommitdiff
path: root/js/prefs.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/prefs.js')
-rwxr-xr-xjs/prefs.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/prefs.js b/js/prefs.js
index f12c31441..3b9e090cc 100755
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -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();