mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-04 05:28:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			721 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			721 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * Fetch note with given ID from backend
 | 
						|
 *
 | 
						|
 * @param noteId of the given note to be fetched. If false, fetches current note.
 | 
						|
 */
 | 
						|
async function fetchNote(noteId = null) {
 | 
						|
    if (!noteId) {
 | 
						|
        noteId = document.body.getAttribute("data-note-id");
 | 
						|
    }
 | 
						|
 | 
						|
    const resp = await fetch(`api/notes/${noteId}`);
 | 
						|
 | 
						|
    return await resp.json();
 | 
						|
}
 | 
						|
 | 
						|
document.addEventListener(
 | 
						|
    "DOMContentLoaded",
 | 
						|
    () => {
 | 
						|
        const toggleMenuButton = document.getElementById("toggleMenuButton");
 | 
						|
        const layout = document.getElementById("layout");
 | 
						|
 | 
						|
        if (toggleMenuButton && layout) {
 | 
						|
            toggleMenuButton.addEventListener("click", () => layout.classList.toggle("showMenu"));
 | 
						|
        }
 | 
						|
    },
 | 
						|
    false
 | 
						|
);
 |