diff --git a/tildes/static/js/behaviors/comment-reply-button.js b/tildes/static/js/behaviors/comment-reply-button.js index 8858ef8..40a0f13 100644 --- a/tildes/static/js/behaviors/comment-reply-button.js +++ b/tildes/static/js/behaviors/comment-reply-button.js @@ -42,7 +42,7 @@ $.onmount('[data-js-comment-reply-button]', function() { textarea.setAttribute('id', markdownID); textarea.setAttribute('name', 'markdown'); textarea.setAttribute('class', 'form-input'); - textarea.setAttribute('placeholder', 'Comment text (markdown)'); + textarea.setAttribute('placeholder', 'Comment text (Markdown)'); textarea.setAttribute('data-js-ctrl-enter-submit-form', ''); textarea.setAttribute('data-js-auto-focus', ''); diff --git a/tildes/tildes/templates/macros/forms.jinja2 b/tildes/tildes/templates/macros/forms.jinja2 index 2a53f10..c0922a5 100644 --- a/tildes/tildes/templates/macros/forms.jinja2 +++ b/tildes/tildes/templates/macros/forms.jinja2 @@ -7,7 +7,7 @@ class="form-input" id="{{ id }}" name="markdown" - placeholder="Text (markdown)" + placeholder="Text (Markdown)" data-js-ctrl-enter-submit-form {% if auto_focus %}data-js-auto-focus{% endif %} >{% if text %}{{ text }}{% endif %}