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_edit.php | |
parent | 0d7b0851bbf58869f1cea3f02125a053a30946df (diff) |
Merge pull-request #147 and #146 (autofocus for comment and description textarea)
Diffstat (limited to 'app/Templates/comment_edit.php')
-rw-r--r-- | app/Templates/comment_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Templates/comment_edit.php b/app/Templates/comment_edit.php index 44e5ff2b..52695f00 100644 --- a/app/Templates/comment_edit.php +++ b/app/Templates/comment_edit.php @@ -6,7 +6,7 @@ <?= Helper\form_csrf() ?> <?= Helper\form_hidden('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-actions"> <input type="submit" value="<?= t('Update') ?>" class="btn btn-blue"/> |