Skip to content

Commit

Permalink
Fix css file path
Browse files Browse the repository at this point in the history
  • Loading branch information
Sohail05 committed Jun 18, 2015
1 parent 34e7c40 commit ea665c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,12 +167,12 @@
$("#frontsearch").keyup(front_filter_fn);

$("#light-toggle").click(function() {
$("#pagestyle").attr("href", "../style_light.css");
$("#pagestyle").attr("href", "style_light.css");
$.cookie("pagestyle", "light", {path: '/'});
});

$("#dark-toggle").click(function() {
$("#pagestyle").attr("href", "../style_dark.css");
$("#pagestyle").attr("href", "style_dark.css");
$.cookie("pagestyle", "dark", {path: '/'});
});

Expand Down

0 comments on commit ea665c3

Please sign in to comment.