moved search behind tree action button

This commit is contained in:
azivner
2017-10-01 08:47:26 -04:00
parent 566008baae
commit 2e8787ff91
6 changed files with 61 additions and 30 deletions

View File

@@ -215,4 +215,14 @@ function scrollToCurrentNote() {
}
}
$(document).bind('keydown', 'alt+s', function() {
$("#search-box").show();
$("input[name=search]").focus();
});
function toggleSearch() {
$("#search-box").toggle();
}
$(document).bind('keydown', 'alt+c', collapseTree);