diff --git a/tt-rss.js b/tt-rss.js index a77165059..a64bed374 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -683,6 +683,11 @@ function hotkey_handler(e) { if (!hotkey_prefix) { + if (keycode == 27) { // escape + closeArticlePanel(); + return; + } + if (keycode == 69) { // e var id = getActiveArticleId(); emailArticle(id);