]>
Commit | Line | Data |
---|---|---|
c7a5e4e0 MG |
1 | (function(){ |
2 | 'use strict'; | |
3 | function set_style(name){ | |
761d945f | 4 | $('#stylesheet').attr("href", "https://static.mindcoding.ro/css/" + name + ".css"); |
c7a5e4e0 | 5 | localStorage.setItem("theme", name); |
59731c89 MG |
6 | $(document).ready(function() { |
7 | if(name == 'slate' || name == 'cyborg') | |
8 | $('.logo').removeClass('logo-light'); | |
9 | else | |
10 | $('.logo').addClass('logo-light'); | |
11 | }); | |
c7a5e4e0 | 12 | } |
7dc32473 | 13 | |
c7a5e4e0 | 14 | $( document ).ready(function() { |
c7a5e4e0 MG |
15 | $('#theme_slate' ).on('click', function () { set_style("slate"); }); |
16 | $('#theme_cerulean').on('click', function () { set_style("cerulean"); }); | |
17 | $('#theme_cyborg' ).on('click', function () { set_style("cyborg"); }); | |
18 | $('#theme_cosmo' ).on('click', function () { set_style("cosmo"); }); | |
7dc32473 MG |
19 | }); |
20 | ||
c7a5e4e0 MG |
21 | var theme = localStorage.getItem("theme"); |
22 | if(theme) { | |
23 | set_style(theme); | |
24 | } | |
25 | })(); |