mirror of
https://github.com/zadam/trilium.git
synced 2025-10-27 16:26:31 +01:00
search notes input box
This commit is contained in:
@@ -97,6 +97,9 @@ $(document).on('click', 'div.popover-content a', function(e) {
|
||||
let linkInfo;
|
||||
|
||||
$(document).bind('keydown', 'alt+l', function() {
|
||||
var range = $('#noteDetail').summernote('createRange');
|
||||
console.log("range:", range);
|
||||
|
||||
$("#noteAutocomplete").val('');
|
||||
$("#linkTitle").val('');
|
||||
|
||||
@@ -153,4 +156,8 @@ $("#addLinkButton").click(function() {
|
||||
isNewWindow: true
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
$(document).bind('keydown', 'alt+s', function() {
|
||||
$("input[name=search]").focus();
|
||||
});
|
||||
Reference in New Issue
Block a user