mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
13 lines
416 B
JavaScript
13 lines
416 B
JavaScript
$(function () {
|
|
$('a[href="#search"]').on('click', function(event) {
|
|
event.preventDefault();
|
|
$('#search').addClass('open');
|
|
$('#search > form > input[type="search"]').focus();
|
|
});
|
|
|
|
$('#search, #search button.close').on('click keyup', function(event) {
|
|
if (event.target == this || event.target.className == 'close red' || event.keyCode == 27) {
|
|
$(this).removeClass('open');
|
|
}
|
|
});
|
|
}); |