fnp
/
wolnelektury.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
FNP changes
[wolnelektury.git]
/
src
/
wolnelektury
/
static
/
js
/
2022.js
1
(function($) {
2
$(function() {
3
4
$("#search").search();
5
$("#search").on('focus', function() {
6
$(".l-navigation__logo").addClass('search-active');
7
});
8
$("#search").on('blur', function() {
9
$(".l-navigation__logo").removeClass('search-active');
10
});
11
12
});
13
})(jQuery);