1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:35:56 +00:00

implement mail plugin using mailto: links; deprecate mail plugin

This commit is contained in:
Andrew Dolgov
2013-03-19 18:32:49 +04:00
parent 4b74648909
commit 1d5cf085a3
7 changed files with 136 additions and 7 deletions

View File

@@ -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."));
}