diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-07-14 20:16:26 -0230 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-07-14 20:16:26 -0230 |
commit | 1583427190bc0dc47224f0750810f65a1f1243b6 (patch) | |
tree | 5bd3f0a87d444bba6bb148471bad60b8a9d6d1bb /app/Templates/comment_create.php | |
parent | 0d7b0851bbf58869f1cea3f02125a053a30946df (diff) |
Merge pull-request #147 and #146 (autofocus for comment and description textarea)
Diffstat (limited to 'app/Templates/comment_create.php')
-rw-r--r-- | app/Templates/comment_create.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Templates/comment_create.php b/app/Templates/comment_create.php index f598532d..71a4f044 100644 --- a/app/Templates/comment_create.php +++ b/app/Templates/comment_create.php @@ -6,7 +6,7 @@ <?= Helper\form_csrf() ?> <?= Helper\form_hidden('task_id', $values) ?> <?= Helper\form_hidden('user_id', $values) ?> - <?= Helper\form_textarea('comment', $values, $errors, array('required', 'placeholder="'.t('Leave a comment').'"'), 'comment-textarea') ?><br/> + <?= Helper\form_textarea('comment', $values, $errors, array('autofocus', 'required', 'placeholder="'.t('Leave a comment').'"'), 'comment-textarea') ?><br/> <div class="form-help"><a href="http://kanboard.net/documentation/syntax-guide" target="_blank" rel="noreferrer"><?= t('Write your text in Markdown') ?></a></div> <div class="form-actions"> |