Added hints to description fields to use markdown syntax, rendered all description fields in the splash as markdown

This commit is contained in:
Gopesh Tulsyan 2014-06-29 17:44:27 +05:30
parent f6a9142510
commit 8efcd69f3d
15 changed files with 30 additions and 24 deletions

View file

@ -2,7 +2,7 @@
<%= f.inputs do %>
<%= f.input :name %>
<%= f.input :color, :input_html => {:size => 6, :type => "color"}, :required=> true %>
<%= f.input :description, :input_html => {:rows => 2 } %>
<%= f.input :description, :input_html => {:rows => 2, data: { provide: "markdown-editable" } }, hint: markdown_hint %>
<%= remove_association_link :track, f %>
<% end %>
</div>