fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
change in multilingual
[wolnelektury.git]
/
wolnelektury
/
static
/
js
/
base.js
1
(function($) {
2
$(function() {
3
4
5
$('#themes-list-toggle').click(function(event) {
6
event.preventDefault();
7
$('#themes-list').toggle('slow');
8
});
9
10
11
$('.open-player').click(function(event) {
12
event.preventDefault();
13
window.open($(this).attr('href'),
14
'player',
15
'width=420, height=500'
16
);
17
});
18
19
20
});
21
})(jQuery)
22