From 0dfc968b1e07f85d433b7c5fed965643fa0261c3 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 11 Nov 2011 15:36:46 +0400 Subject: [PATCH] esc closes article panel --- tt-rss.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tt-rss.js b/tt-rss.js index a7716505..a64bed37 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); -- 2.39.5