mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 19:36:12 +01:00
basic infrastructure for "relation map" note type
This commit is contained in:
15
src/public/javascripts/services/note_detail_relation_map.js
Normal file
15
src/public/javascripts/services/note_detail_relation_map.js
Normal file
@@ -0,0 +1,15 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user