basic infrastructure for "relation map" note type

This commit is contained in:
azivner
2018-10-18 11:25:33 +02:00
parent 04af8a3a96
commit e487dc1df7
5 changed files with 35 additions and 2 deletions

View 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
}