mirror of
https://github.com/zadam/trilium.git
synced 2025-10-29 09:16:45 +01:00
15 lines
327 B
JavaScript
15 lines
327 B
JavaScript
|
|
import server from "./server.js";
|
||
|
|
import noteDetailService from "./note_detail.js";
|
||
|
|
|
||
|
|
const $noteDetailRelationMap = $("#note-detail-relation-map");
|
||
|
|
|
||
|
|
async function render() {
|
||
|
|
$noteDetailRelationMap.show();
|
||
|
|
}
|
||
|
|
|
||
|
|
export default {
|
||
|
|
show: render,
|
||
|
|
getContent: () => "",
|
||
|
|
focus: () => null,
|
||
|
|
onNoteChange: () => null
|
||
|
|
}
|