Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiyad Preukschas <riyad@informatik.uni-bremen.de>2012-10-10 01:06:33 +0400
committerRiyad Preukschas <riyad@informatik.uni-bremen.de>2012-10-10 01:06:33 +0400
commit682f62fd4addb38843a9047b9ac47eb5ba94a30e (patch)
treef89df748fd510212b3229bc2143faba52708d241 /app/views/issues
parent679d0d6d760b850e27c13f3ce0f812b8b081df7f (diff)
Mark all GFM capable inputs
Diffstat (limited to 'app/views/issues')
-rw-r--r--app/views/issues/_form.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/issues/_form.html.haml b/app/views/issues/_form.html.haml
index 813ecab2d19..ec3edce066a 100644
--- a/app/views/issues/_form.html.haml
+++ b/app/views/issues/_form.html.haml
@@ -12,7 +12,7 @@
= f.label :title do
%strong= "Subject *"
.input
- = f.text_field :title, maxlength: 255, class: "xxlarge"
+ = f.text_field :title, maxlength: 255, class: "xxlarge gfm-input"
.issue_middle_block
.issue_assignee
= f.label :assignee_id do
@@ -37,7 +37,7 @@
.clearfix
= f.label :description, "Details"
.input
- = f.text_area :description, maxlength: 2000, class: "xxlarge", rows: 14
+ = f.text_area :description, maxlength: 2000, class: "xxlarge gfm-input", rows: 14
%p.hint Issues are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.