diff --git a/js/tt-rss.js b/js/tt-rss.js index 4f82545f9..2cee8ae3c 100644 --- a/js/tt-rss.js +++ b/js/tt-rss.js @@ -685,11 +685,13 @@ function hotkey_handler(e) { } if ((keycode == 191 || keychar == '?') && shift_key) { // ? - if (!Element.visible("hotkey_help_overlay")) { - Effect.Appear("hotkey_help_overlay", {duration : 0.3, to : 0.9}); - } else { - Element.hide("hotkey_help_overlay"); - } + + new Ajax.Request("backend.php", { + parameters: "?op=backend&method=help&topic=main", + onComplete: function(transport) { + $("hotkey_help_overlay").innerHTML = transport.responseText; + Effect.Appear("hotkey_help_overlay", {duration : 0.3}); + } }); return false; }