From d46078a1174d8439f9aa042a6b3820318728036b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kate=C5=99ina=20=C4=8C?= Date: Tue, 27 Oct 2020 20:34:41 +0100 Subject: [PATCH] plain edit jako alternativa ckeditoru --- vue_frontend/src/components/TextNode.vue | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/vue_frontend/src/components/TextNode.vue b/vue_frontend/src/components/TextNode.vue index b52b50d7..5aa93b8c 100644 --- a/vue_frontend/src/components/TextNode.vue +++ b/vue_frontend/src/components/TextNode.vue @@ -6,9 +6,18 @@
+ + +
+ +
+ + +
+

@@ -48,6 +57,7 @@ export default { props: { item: Object, editorShow: Boolean, + plainEditShow: Boolean, create: Boolean, where: String, refnode: Object @@ -58,6 +68,7 @@ export default { this.currentText = ""; this.originalText = ""; this.editorShow = true; + this.plainEditShow = false; } else { this.currentText = this.item.node.text.na_web; this.originalText = this.item.node.text.na_web;