diff --git a/app/components/SimpleEditor/ContainerEditor.js b/app/components/SimpleEditor/ContainerEditor.js index 59b6715e14ac3b27129ec06a43c05dd27e0259e7..522f6fb6fea2aa7e2a97c44a2c54450b61a041fe 100644 --- a/app/components/SimpleEditor/ContainerEditor.js +++ b/app/components/SimpleEditor/ContainerEditor.js @@ -52,7 +52,7 @@ class ContainerEditor extends SubstanceContainerEditor { this.container.on('nodes:changed', this.onContainerChange, this) if (this.isEmpty()) this.createText() - if (this.isReadOnlyMode()) this.links() + if (this.isReadOnlyMode()) this.addTargetToLinks() } // create an empty paragraph with an empty node @@ -104,7 +104,7 @@ class ContainerEditor extends SubstanceContainerEditor { return !this.isEditable() && this.isSelectable() } - links () { + addTargetToLinks () { const allLinks = this.el.findAll('a') each(allLinks, link => link.attr('target', '_blank')