Archived
1
0

try fixing theme switcher

This commit is contained in:
Jeff Becker 2016-03-07 20:21:20 -05:00
parent 0623077a40
commit 63e2614983
No known key found for this signature in database
GPG Key ID: AB950234D6EA286B

View File

@ -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);
}
}