mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
let hoistedNoteId = 'root';
|
|
|
|
module.exports = {
|
|
getHoistedNoteId: () => hoistedNoteId,
|
|
setHoistedNoteId(noteId) { hoistedNoteId = noteId; }
|
|
};
|