summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-19 18:32:49 +0400
committerAndrew Dolgov <[email protected]>2013-03-19 18:32:49 +0400
commit1d5cf085a37e8e016242c9cfea631a90861ab306 (patch)
tree2643e083f22b1dfa331b4c5bfc1b7c81fe88cb3c /js
parent4b746489098bc2d6bfc520715fb422b82259491c (diff)
implement mail plugin using mailto: links; deprecate mail plugin
Diffstat (limited to 'js')
-rw-r--r--js/tt-rss.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 357e07780..a8552d173 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -670,6 +670,8 @@ function hotkey_handler(e) {
case "email_article":
if (typeof emailArticle != "undefined") {
emailArticle();
+ } else if (typeof mailtoArticle != "undefined") {
+ mailtoArticle();
} else {
alert(__("Please enable mail plugin first."));
}