mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-31 20:22:27 +08: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
|
||
|
}
|