renamed treeCache into froca

This commit is contained in:
zadam
2021-04-16 22:57:37 +02:00
parent 4311834d75
commit af5b1021c7
63 changed files with 292 additions and 292 deletions

View File

@@ -1,6 +1,6 @@
import treeService from "./tree.js";
import linkService from "./link.js";
import treeCache from "./tree_cache.js";
import froca from "./tree_cache.js";
import utils from "./utils.js";
import attributeRenderer from "./attribute_renderer.js";
import noteContentRenderer from "./note_content_renderer.js";
@@ -44,7 +44,7 @@ async function mouseEnterHandler() {
const noteId = treeService.getNoteIdFromNotePath(notePath);
const note = await treeCache.getNote(noteId);
const note = await froca.getNote(noteId);
const content = await renderTooltip(note);
if (utils.isHtmlEmpty(content)) {