From 66be620a87aa93a1f9cc3e956942026ce31f2207 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 14 Dec 2011 15:51:27 +0400 Subject: do not include keyboard help files into index and prefs.php --- js/tt-rss.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'js/tt-rss.js') diff --git a/js/tt-rss.js b/js/tt-rss.js index 38232bdfe..23349db63 100644 --- a/js/tt-rss.js +++ b/js/tt-rss.js @@ -428,8 +428,12 @@ function quickMenuGo(opid) { } if (opid == "qmcHKhelp") { - //Element.show("hotkey_help_overlay"); - Effect.Appear("hotkey_help_overlay", {duration : 0.3}); + 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}); + } }); } if (opid == "qmcAbout") { -- cgit v1.2.3-54-g00ecf