summaryrefslogtreecommitdiff
path: root/js/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-02 10:46:09 +0300
committerAndrew Dolgov <[email protected]>2018-12-02 10:46:09 +0300
commitaa2f119eb656cc2064da691328239010f51afb98 (patch)
tree2a87fc458c4de0d3bf2d7d74f095f42203eb9fd5 /js/prefs.js
parent874560db547f718b82d77657dc019d840c30e0ed (diff)
remove getSelectedTableRowIds (Tables.getSelected)
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();