summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rw-r--r--js/tt-rss.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index 054ccf3df..badfe8707 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -776,6 +776,19 @@ function hotkey_handler(e) {
case "help_dialog":
helpDialog("main");
return false;
+ case "toggle_combined_mode":
+ notify_progress("Loading, please wait...");
+
+ var value = isCdmMode() ? "false" : "true";
+ var query = "?op=rpc&method=setpref&key=COMBINED_DISPLAY_MODE&value=" + value;
+
+ new Ajax.Request("backend.php", {
+ parameters: query,
+ onComplete: function(transport) {
+ window.location.reload();
+ } });
+
+ return false;
default:
console.log("unhandled action: " + hotkey_action + "; hotkey: " + hotkey);
}