Django 1.8 and other updates.
[wolnelektury.git] / apps / wolnelektury_core / static / js / book_text / settings.js
1 (function($){$(function(){
2
3
4 $("#menu-settings").show();
5
6 $(".settings-switch").click(function(e) {
7     e.preventDefault();
8     $("body").toggleClass($(this).attr("data-setting"));
9 });
10
11
12 })})(jQuery);