()
| 346 | } |
| 347 | |
| 348 | toggleLink () { |
| 349 | if (this.editor.isActive('link')) { |
| 350 | this.linkTooltip.hide() |
| 351 | this.editor.chain().focus().extendMarkRange('link').unsetLink().run() |
| 352 | this.updateToolbarState() |
| 353 | } else { |
| 354 | const { from } = this.editor.state.selection |
| 355 | |
| 356 | this.linkTooltip.hide() |
| 357 | this.linkTooltip.show(this.editor.getAttributes('link').href, from, { focus: true }) |
| 358 | } |
| 359 | } |
| 360 | |
| 361 | insertVariable (e) { |
| 362 | const variable = e.target.closest('[data-variable]')?.dataset.variable |
no test coverage detected