From 22fc6871e8eca507578381bda6d6683d2082810b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 16 Feb 2021 14:51:42 +0300 Subject: remove backend helper and move its only function to rpc for the time being --- js/App.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'js/App.js') diff --git a/js/App.js b/js/App.js index 4b2adc388..bb861829d 100644 --- a/js/App.js +++ b/js/App.js @@ -321,10 +321,10 @@ const App = { Effect.Fade(elemId, {duration : 0.5}); } }, - helpDialog: function(topic) { - xhrPost("backend.php", {op: "backend", method: "help", topic: topic}, (transport) => { + hotkeyHelp: function() { + xhrPost("backend.php", {op: "rpc", method: "hotkeyHelp"}, (transport) => { const dialog = new fox.SingleUseDialog({ - title: __("Help"), + title: __("Keyboard shortcuts"), content: transport.responseText, }); @@ -850,7 +850,7 @@ const App = { }; this.hotkey_actions["help_dialog"] = () => { - this.helpDialog("main"); + this.hotkeyHelp(); }; } else { @@ -1100,7 +1100,7 @@ const App = { } }; this.hotkey_actions["help_dialog"] = () => { - this.helpDialog("main"); + this.hotkeyHelp(); }; this.hotkey_actions["toggle_combined_mode"] = () => { const value = this.isCombinedMode() ? "false" : "true"; -- cgit v1.2.3