From: Andrew Dolgov Date: Mon, 26 Dec 2011 09:26:43 +0000 (+0400) Subject: fix help not loading on ? press X-Git-Tag: 1.5.9~48 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=6802e1bedfa0c108d9e24dc7fe58e3dc14489eb8;p=tt-rss.git fix help not loading on ? press --- diff --git a/js/tt-rss.js b/js/tt-rss.js index 4f82545f..2cee8ae3 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; }