From 7aa007f158a52b41494049a1202938fc97813ec1 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Fri, 23 Jul 2021 15:20:02 +0200 Subject: added theme tracking --- org-roam-ui.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'org-roam-ui.el') diff --git a/org-roam-ui.el b/org-roam-ui.el index 9988899..f0452a6 100644 --- a/org-roam-ui.el +++ b/org-roam-ui.el @@ -94,7 +94,7 @@ ROWS is the sql result, while COLUMN-NAMES is the columns to use." (push (cons (pop column-names) (pop rows)) res)) res)) -(defservlet* theme application/json () +(defservlet* theme text/stream () (progn (when (boundp 'doom-themes--colors) (let* @@ -102,7 +102,7 @@ ROWS is the sql result, while COLUMN-NAMES is the columns to use." (progn (dolist (color colors) (push (cons (car color) (car (cdr color))) ui-theme)) (insert (json-encode ui-theme))))) - (httpd-send-header t "text/plain" 200 :Access-Control-Allow-Origin "*"))) + (httpd-send-header t "text/event-stream" 200 :Access-Control-Allow-Origin "*"))) (defservlet* id/:id text/html () -- cgit v1.2.3