mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
let hoistedNoteId = 'root';
|
|
|
|
module.exports = {
|
|
getHoistedNoteId: () => hoistedNoteId,
|
|
setHoistedNoteId(noteId) { hoistedNoteId = noteId; }
|
|
};
|