summaryrefslogtreecommitdiff
path: root/js/App.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-18 11:54:29 +0300
committerAndrew Dolgov <[email protected]>2021-02-18 11:54:29 +0300
commit466cba39d86487ce3c81d7aeade96e9f9e4a119d (patch)
tree2e21056edf73e853319a05aa25b038c078c4cfd1 /js/App.js
parent1adb9bb6b643736706b746629b849df9cdf45e50 (diff)
parentb888bc2091c6737846f54a729ee047e4693fd8e3 (diff)
Merge branch 'master' of git.fakecake.org:fox/tt-rss
Diffstat (limited to 'js/App.js')
-rw-r--r--js/App.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/js/App.js b/js/App.js
index ccfeb9024..8776aab81 100644
--- a/js/App.js
+++ b/js/App.js
@@ -107,6 +107,9 @@ const App = {
return dijit.getEnclosingWidget(elem.closest('.dijitDialog'));
},
+ getPhArgs(plugin, method, args = {}) {
+ return {...{op: "pluginhandler", plugin: plugin, method: method}, ...args};
+ },
label_to_feed_id: function(label) {
return this.LABEL_BASE_INDEX - 1 - Math.abs(label);
},