]>
Commit | Line | Data |
---|---|---|
74da6b38 MG |
1 | function set_style(name, trans){ |
2 | if(trans){ | |
3 | document.body.classList.add('transition-color'); | |
4 | setTimeout(() => document.body.classList.remove('transition-color'), 1000); | |
5 | } | |
5eae1f77 | 6 | $('link[title]').each(e => e.disabled = true); |
7093e9ba MG |
7 | $('link[title="' + name + '"]')[0].disabled = false; |
8 | localStorage.setItem("theme", name); | |
9 | } | |
7dc32473 | 10 | |
7093e9ba | 11 | $(function() { |
81c2ef98 MG |
12 | var theme_ul = '<ul class="list-inline" id="themes">' + |
13 | '<li><a role="button" data-theme="cyborg">Black</a>' + | |
14 | '<li><a role="button" data-theme="slate">Grey</a>' + | |
15 | '<li><a role="button" data-theme="readable">White</a></ul>'; | |
7093e9ba | 16 | var sidebar = $('#sidebar')[0]; |
81c2ef98 | 17 | sidebar.insertBefore(m(theme_ul), sidebar.firstChild); |
74da6b38 | 18 | $('#themes a').on('click', e => set_style(e.target.dataset.theme, true)); |
7093e9ba | 19 | }); |
7dc32473 | 20 | |
8345760a | 21 | let theme = localStorage.getItem("theme"); |
7093e9ba MG |
22 | if(theme) { |
23 | if(theme == "cerulean" || theme == "cosmo") | |
24 | theme = "readable"; | |
74da6b38 | 25 | set_style(theme, false); |
7093e9ba | 26 | } |