From 0e852bb2d18e27199de0534ddc0846234b94fb20 Mon Sep 17 00:00:00 2001 From: chris <kokosias@yahoo.gr> Date: Thu, 4 May 2017 13:32:47 +0300 Subject: [PATCH] When eidtor in read only mode you can only add comments in notesEditor --- .../elements/isolatedNote/IsolatedNoteComponent.js | 4 +++- app/components/SimpleEditor/notesEditor/NotesEditor.js | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app/components/SimpleEditor/elements/isolatedNote/IsolatedNoteComponent.js b/app/components/SimpleEditor/elements/isolatedNote/IsolatedNoteComponent.js index 743555a..8f9a5cc 100644 --- a/app/components/SimpleEditor/elements/isolatedNote/IsolatedNoteComponent.js +++ b/app/components/SimpleEditor/elements/isolatedNote/IsolatedNoteComponent.js @@ -9,13 +9,15 @@ class IsolatedNoteComponent extends IsolatedNodeComponent { // is there a better way than rendering a text property editor??? // review ref name // do we need a ref ?? + const editing = (this.context.editor.props.disabled) ? 'selection' : 'full' + let el = $$('div') .addClass('sc-entity') .attr('data-id', this.props.node.id) .append( $$(TextPropertyEditor, { - disabled: this.context.editor.props.disabled, multiLine: false, + editing: editing, path: [this.props.node.id, 'content'], tagName: 'p' } diff --git a/app/components/SimpleEditor/notesEditor/NotesEditor.js b/app/components/SimpleEditor/notesEditor/NotesEditor.js index 209cca0..fef3078 100644 --- a/app/components/SimpleEditor/notesEditor/NotesEditor.js +++ b/app/components/SimpleEditor/notesEditor/NotesEditor.js @@ -67,7 +67,7 @@ class NotesEditor extends ProseEditor { _renderEditor ($$) { const hasIsolatedNotes = this.getIsolatedNodes() - const disabled = (isEmpty(hasIsolatedNotes)) ? true : this.props.disabled + const disabled = (isEmpty(hasIsolatedNotes)) return $$(ContainerEditor, { book: this.props.book, -- GitLab