$('#theme_cosmo' ).on('click', function () { set_style("cosmo"); });
});
-if(localStorage.getItem("theme")) {
- set_style(localStorage.getItem("theme"));
+var theme = localStorage.getItem("theme");
+if(theme) {
+ set_style(theme);
$(document).ready(function(){
- $('#yardi').attr('src', name == "slate" || name == "cyborg" ? "/img/yardi-white.png" : "/img/yardi-blue.png");
+ $('#yardi').attr('src', theme == "slate" || theme == "cyborg" ? "/img/yardi-white.png" : "/img/yardi-blue.png");
})
}