X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=js%2F90-themes.js;h=1e6fdceb66d996c31291974f5d44412a4abce126;hb=9cad7bdddc585fce8efed182c91634b2b7e9e354;hp=eb5987c76041a5d720bc9787302c3120122ccc42;hpb=5fdcdc9177877f4b54260e4429e9998b6d9598b5;p=plack-app-gruntmaster.git diff --git a/js/90-themes.js b/js/90-themes.js index eb5987c..1e6fdce 100644 --- a/js/90-themes.js +++ b/js/90-themes.js @@ -1,20 +1,21 @@ (function(){ 'use strict'; function set_style(name){ - $('#stylesheet').attr("href", "/css/" + name + ".css"); + $('#stylesheet').attr("href", "/static/css/" + name + ".css"); localStorage.setItem("theme", name); } $( document ).ready(function() { $('#theme-selector').detach().prependTo($('#sidebar')); $('#theme_slate' ).on('click', function () { set_style("slate"); }); - $('#theme_cerulean').on('click', function () { set_style("cerulean"); }); $('#theme_cyborg' ).on('click', function () { set_style("cyborg"); }); - $('#theme_cosmo' ).on('click', function () { set_style("cosmo"); }); + $('#theme_readable').on('click', function () { set_style("readable"); }); }); var theme = localStorage.getItem("theme"); if(theme) { + if(theme == "cerulean" || theme == "cosmo") + theme = "readable"; set_style(theme); } })();