summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-07-14 20:16:26 -0230
committerFrédéric Guillot <fred@kanboard.net>2014-07-14 20:16:26 -0230
commit1583427190bc0dc47224f0750810f65a1f1243b6 (patch)
tree5bd3f0a87d444bba6bb148471bad60b8a9d6d1bb /app
parent0d7b0851bbf58869f1cea3f02125a053a30946df (diff)
Merge pull-request #147 and #146 (autofocus for comment and description textarea)
Diffstat (limited to 'app')
-rw-r--r--app/Templates/comment_create.php2
-rw-r--r--app/Templates/comment_edit.php2
-rw-r--r--app/Templates/task_edit_description.php2
3 files changed, 3 insertions, 3 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">
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"/>
diff --git a/app/Templates/task_edit_description.php b/app/Templates/task_edit_description.php
index ba0d3887..e3a3e8b9 100644
--- a/app/Templates/task_edit_description.php
+++ b/app/Templates/task_edit_description.php
@@ -7,7 +7,7 @@
<?= Helper\form_csrf() ?>
<?= Helper\form_hidden('id', $values) ?>
- <?= Helper\form_textarea('description', $values, $errors, array('required', 'placeholder="'.t('Leave a description').'"'), 'description-textarea') ?><br/>
+ <?= Helper\form_textarea('description', $values, $errors, array('autofocus', 'required', 'placeholder="'.t('Leave a description').'"'), 'description-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">