import NoteContextAwareWidget from "../note_context_aware_widget.js" const TPL = `\
`; export default class GeoMapButtons extends NoteContextAwareWidget { isEnabled() { return super.isEnabled() && this.note?.type === "geoMap"; } doRender() { super.doRender(); this.$widget = $(TPL); this.$widget.find(".geo-map-create-child-note").on("click", () => this.triggerEvent("geoMapCreateChildNote", { ntxId: this.ntxId })); } }