mirror of
https://gitlab.com/arnekeller/trilium-timeline.git
synced 2024-11-09 10:50:41 +00:00
7 lines
200 B
JavaScript
7 lines
200 B
JavaScript
// Add UI Button shortcut
|
|
api.addButtonToToolbar({
|
|
title: 'Timeline',
|
|
icon: 'bx bxs-calendar',
|
|
action: async () => api.activateNote(await api.startNote.getRelationValue('targetNote'))
|
|
});
|