fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
32e2e81ce4e72e25f07c82b9bc5a6161cdfd45d7
[wolnelektury.git]
/
apps
/
wolnelektury_core
/
static
/
js
/
book_text
/
themes.js
1
(function($){$(function(){
2
3
4
if ($('#themes li').length > 0) {
5
$("#menu-themes").show();
6
}
7
8
9
$(".theme-begin").click(function(e) {
10
e.preventDefault();
11
if ($(this).css("overflow") == "hidden" || $(this).hasClass('showing')) {
12
$(this).toggleClass("showing");
13
}
14
});
15
16
})})(jQuery);