mirror of
https://github.com/zadam/trilium.git
synced 2025-11-03 11:56:01 +01:00
note activation from API will also scroll to it / focus
This commit is contained in:
@@ -39,7 +39,11 @@ function FrontendScriptApi(startNote, currentNote, originEntity = null, tabConte
|
||||
* @param {string} notePath (or noteId)
|
||||
* @returns {Promise<void>}
|
||||
*/
|
||||
this.activateNote = treeService.activateNote;
|
||||
this.activateNote = async (notePath, noteLoadedListener) => {
|
||||
await treeService.activateNote(notePath, noteLoadedListener);
|
||||
|
||||
await treeService.scrollToActiveNote();
|
||||
};
|
||||
|
||||
/**
|
||||
* Activates newly created note. Compared to this.activateNote() also refreshes tree.
|
||||
|
||||
Reference in New Issue
Block a user