2015-06-06 10:40:39 +02:00
|
|
|
template(name="editor")
|
2020-03-24 20:39:49 +02:00
|
|
|
// With Richer editor is in use, and comment is submitted,
|
|
|
|
|
// clear comment form with JQuery Comment at
|
|
|
|
|
// client/components/activities/comments.js . Id #summernote is defined
|
|
|
|
|
// here at client/components/main/editor.jade where it previously was
|
|
|
|
|
// id=id, now it is id="summernote".
|
2015-06-06 10:40:39 +02:00
|
|
|
textarea.editor(
|
2019-05-08 21:30:38 +03:00
|
|
|
dir="auto"
|
2015-06-06 10:40:39 +02:00
|
|
|
class="{{class}}"
|
2020-03-24 20:39:49 +02:00
|
|
|
id="summernote"
|
2015-06-06 10:40:39 +02:00
|
|
|
autofocus=autofocus
|
|
|
|
|
placeholder="{{_ 'comment-placeholder'}}")
|
|
|
|
|
+Template.contentBlock
|
2015-06-14 19:40:20 +02:00
|
|
|
|
|
|
|
|
template(name="viewer")
|
2019-05-08 21:30:38 +03:00
|
|
|
.viewer(dir="auto")
|
2015-06-16 23:06:06 +02:00
|
|
|
+mentions
|
2018-02-12 23:52:22 +02:00
|
|
|
+markdown
|
|
|
|
|
{{> UI.contentBlock }}
|