block email_article action if mail plugin is not enabled

This commit is contained in:
Andrew Dolgov 2012-12-28 15:44:22 +04:00
parent b8cb4d08b3
commit 0b2f8843e5

View file

@ -735,7 +735,11 @@ function hotkey_handler(e) {
scrollArticle(-50);
return true;
case "email_article":
emailArticle();
if (typeof emailArticle != "undefined") {
emailArticle();
} else {
alert(__("Please enable mail plugin first."));
}
return true;
case "select_all":
selectArticles('all');