()
| 613 | } |
| 614 | |
| 615 | toggleLink () { |
| 616 | if (this.editor.isActive('link')) { |
| 617 | this.linkTooltip.hide() |
| 618 | this.editor.chain().focus().extendMarkRange('link').unsetLink().run() |
| 619 | this.updateToolbarState() |
| 620 | } else { |
| 621 | const { from } = this.editor.state.selection |
| 622 | |
| 623 | this.linkTooltip.hide() |
| 624 | this.linkTooltip.show(this.editor.getAttributes('link').htmlAttrs?.href, from, { focus: true }) |
| 625 | } |
| 626 | } |
| 627 | |
| 628 | insertVariable (e) { |
| 629 | const variable = e.target.closest('[data-variable]')?.dataset.variable |
no test coverage detected