mirror of
https://github.com/zadam/trilium.git
synced 2025-11-05 04:45:47 +01:00
lazy loading of opened tabs to speed up initial startup
This commit is contained in:
@@ -97,8 +97,8 @@ export default class LinkMap {
|
||||
}
|
||||
|
||||
$noteBox
|
||||
.mouseover(() => $(".link-" + noteId).addClass("jsplumb-connection-hover"))
|
||||
.mouseout(() => $(".link-" + noteId).removeClass("jsplumb-connection-hover"));
|
||||
.mouseover(() => this.$linkMapContainer.find(".link-" + noteId).addClass("jsplumb-connection-hover"))
|
||||
.mouseout(() => this.$linkMapContainer.find(".link-" + noteId).removeClass("jsplumb-connection-hover"));
|
||||
|
||||
this.$linkMapContainer.append($noteBox);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user