Fix broken theme button after changing bootstrap version

Also fix the theme cookie if it's for the wrong version.
pull/20/head
Harvey Tindall 4 years ago
parent 086fd0ef2f
commit a5a721b07c
No known key found for this signature in database
GPG Key ID: BBC65952848FB1A2

@ -35,16 +35,22 @@
{{ else }}
const bsVersion = 4;
{{ end }}
const cssFile = "{{ .cssFile }}";
var cssFile = "{{ .cssFile }}";
var css = document.createElement('link');
css.setAttribute('rel', 'stylesheet');
css.setAttribute('type', 'text/css');
var cssCookie = getCookie("css");
if (cssCookie.includes('bs' + bsVersion)) {
css.setAttribute('href', cssCookie);
} else {
css.setAttribute('href', cssFile);
};
cssFile = cssCookie;
} else if (cssCookie.includes('bs')) {
if (cssCookie.includes('jf')) {
cssFile = 'bs' + bsVersion + '-jf.css';
} else {
cssFile = 'bs' + bsVersion + '.css';
}
document.cookie = 'css=' + cssFile;
}
css.setAttribute('href', cssFile);
document.head.appendChild(css);
</script>
{{ if not .bs5 }}

Loading…
Cancel
Save