mirror of
https://github.com/zadam/trilium.git
synced 2025-10-31 18:36:30 +01:00
noteId is now in the URL hash. When this is present during notecase startup, then this note will be loaded
This commit is contained in:
@@ -1,7 +1,11 @@
|
||||
$(function(){
|
||||
$.get(baseUrl + 'tree').then(resp => {
|
||||
const notes = resp.notes;
|
||||
const startNoteId = resp.start_note_id;
|
||||
let startNoteId = resp.start_note_id;
|
||||
|
||||
if (document.location.hash) {
|
||||
startNoteId = document.location.hash.substr(1); // strip initial #
|
||||
}
|
||||
|
||||
function copyTitle(notes) {
|
||||
for (let note of notes) {
|
||||
@@ -52,8 +56,6 @@ $(function(){
|
||||
setExpanded(data.node.key, false);
|
||||
},
|
||||
init: function(event, data) {
|
||||
console.log("Activating...");
|
||||
|
||||
if (startNoteId) {
|
||||
data.tree.activateKey(startNoteId);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user