From 63e26149834e5267358f7ecbf590fb06cb52000e Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Mon, 7 Mar 2016 20:21:20 -0500 Subject: [PATCH] try fixing theme switcher --- contrib/static/nntpchan.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/static/nntpchan.js b/contrib/static/nntpchan.js index 660924b..00e94eb 100644 --- a/contrib/static/nntpchan.js +++ b/contrib/static/nntpchan.js @@ -34,7 +34,7 @@ function enable_theme(prefix, name) { if (name) { var style = document.createElement("style"); style.setAttribute("id", "current_theme"); - style.innerHTML="@import('"+prefix+"static/"+name+".css')"; + style.innerHTML='@import("'+prefix+"static/"+name+'.css")'; document.head.appendChild(style); } }