12345678910111213141516171819 |
- template(name="editor")
- // 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".
- textarea.editor(
- dir="auto"
- class="{{class}}"
- id="summernote"
- autofocus=autofocus
- placeholder="{{_ 'comment-placeholder'}}")
- +Template.contentBlock
- template(name="viewer")
- .viewer(dir="auto")
- +mentions
- +markdown
- {{> UI.contentBlock }}
|