1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-12-22 17:10:10 +00:00

Fix broken theme button after changing bootstrap version

Also fix the theme cookie if it's for the wrong version.
This commit is contained in:
Harvey Tindall 2020-08-27 21:10:56 +01:00
parent 086fd0ef2f
commit a5a721b07c
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2

View File

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