2014-09-26 18:41:17 -04:00
|
|
|
.form-group.commit_message-group
|
|
|
|
= label_tag 'commit_message', class: 'control-label' do
|
|
|
|
Commit message
|
|
|
|
.col-sm-10
|
|
|
|
.commit-message-container
|
|
|
|
.max-width-marker
|
|
|
|
= text_area_tag 'commit_message',
|
|
|
|
(params[:commit_message] || local_assigns[:text]),
|
2015-10-05 18:20:43 -04:00
|
|
|
class: 'form-control js-quick-submit', placeholder: local_assigns[:placeholder],
|
2014-09-26 18:41:17 -04:00
|
|
|
required: true, rows: (local_assigns[:rows] || 3)
|
|
|
|
- if local_assigns[:hint]
|
|
|
|
%p.hint
|
|
|
|
Try to keep the first line under 52 characters
|
|
|
|
and the others under 72.
|