feat(view/calendar): render a text in calendar view

This commit is contained in:
Elian Doran
2025-02-13 23:46:20 +02:00
parent e2bbee8e16
commit 4592d6750b
4 changed files with 66 additions and 14 deletions

View File

@@ -3,7 +3,8 @@ import type FNote from "../../entities/fnote.js";
export default abstract class ViewMode {
constructor($parent: JQuery<HTMLElement>, parentNote: FNote, noteIds: string[], showNotePath: boolean = false) {
// note list must be added to the DOM immediately, otherwise some functionality scripting (canvas) won't work
$parent.empty();
}
abstract renderList(): Promise<JQuery<HTMLElement> | undefined>;