about summary refs log tree commit diff
path: root/cgit.c
diff options
context:
space:
mode:
authorAndy Green <andy@warmcat.com>2018-06-23 18:25:53 +0800
committerJason A. Donenfeld <Jason@zx2c4.com>2022-12-19 16:50:21 +0100
commitaee39b4e9a45e1ba507c0017de50bb9dbbae7af8 (patch)
tree7c6328c363a06f12143e4d15b09c6d7158f8adfc /cgit.c
parentcss: change to be a list (diff)
downloadcgit-magenta-aee39b4e9a45e1ba507c0017de50bb9dbbae7af8.tar.xz
config: add js
Just like the config allows setting css URL path, add a config for
setting the js URL path

Signed-off-by: Andy Green <andy@warmcat.com>
Reviewed-by: John Keeping <john@keeping.me.uk>
Signed-off-by: Christian Hesse <mail@eworm.de>
Diffstat (limited to 'cgit.c')
-rw-r--r--cgit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cgit.c b/cgit.c

index 75d9926..57d7097 100644 --- a/cgit.c +++ b/cgit.c
@@ -143,6 +143,8 @@ static void config_cb(const char *name, const char *value) ctx.cfg.root_readme = xstrdup(value); else if (!strcmp(name, "css")) string_list_append(&ctx.cfg.css, xstrdup(value)); + else if (!strcmp(name, "js")) + string_list_append(&ctx.cfg.js, xstrdup(value)); else if (!strcmp(name, "favicon")) ctx.cfg.favicon = xstrdup(value); else if (!strcmp(name, "footer"))