summaryrefslogtreecommitdiff
path: root/js/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2020-02-28 08:03:25 +0300
committerAndrew Dolgov <[email protected]>2020-02-28 08:03:25 +0300
commit4e74da590ee935c2187dd02f6c2b312680065f13 (patch)
tree6b1912724386957b3c45638bb565603d2eab0850 /js/tt-rss.js
parentbdb1e475e72d985065b564ccb8bba8576ac4f614 (diff)
af_readability: allow get full text button to work as a toggle; in cdm, scroll to article after embedding
Diffstat (limited to 'js/tt-rss.js')
-rw-r--r--js/tt-rss.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 73790e295..d45dd5748 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -476,7 +476,7 @@ require(["dojo/_base/kernel",
this.hotkey_actions["collapse_sidebar"] = function () {
Feeds.toggle();
};
- this.hotkey_actions["embed_full_text"] = function () {
+ this.hotkey_actions["toggle_full_text"] = function () {
if (typeof Plugins.Af_Readability != "undefined") {
if (Article.getActive())
Plugins.Af_Readability.embed(Article.getActive());