1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 21:25:55 +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

32
plugins/mailto/init.js Normal file
View File

@@ -0,0 +1,32 @@
function mailtoArticle(id) {
try {
if (!id) {
var ids = getSelectedArticleIds2();
if (ids.length == 0) {
alert(__("No articles are selected."));
return;
}
id = ids.toString();
}
if (dijit.byId("emailArticleDlg"))
dijit.byId("emailArticleDlg").destroyRecursive();
var query = "backend.php?op=pluginhandler&plugin=mailto&method=emailArticle&param=" + param_escape(id);
dialog = new dijit.Dialog({
id: "emailArticleDlg",
title: __("Forward article by email"),
style: "width: 600px",
href: query});
dialog.show();
} catch (e) {
exception_error("emailArticle", e);
}
}