summaryrefslogtreecommitdiff
path: root/app/views/blogposts/new.html.erb
diff options
context:
space:
mode:
authorjomo <github@jomo.tv>2014-05-01 18:01:10 +0200
committerjomo <github@jomo.tv>2014-05-01 18:01:10 +0200
commit477112ec0b3390745068291f5125c305d3a22a19 (patch)
tree319dc46723c5fcab706fa7444b8861191fb43764 /app/views/blogposts/new.html.erb
parent4774ebbb2574ba0546238262b64e60bf115af890 (diff)
fix textareas
Diffstat (limited to 'app/views/blogposts/new.html.erb')
-rw-r--r--app/views/blogposts/new.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/blogposts/new.html.erb b/app/views/blogposts/new.html.erb
index 5f8f74a..05e3075 100644
--- a/app/views/blogposts/new.html.erb
+++ b/app/views/blogposts/new.html.erb
@@ -2,6 +2,6 @@
<%= form_for @post do |f|%>
<%= f.text_field :title, placeholder: "Title" %>
<%= render partial: "mdhelp" %>
- <%= f.text_area :content, placeholder: "Text", input_html: {class: "vertical"} %>
+ <%= f.text_area :content, placeholder: "Text" %>
<p><%= f.submit "Create Post", class: "btn blue left" %></p>
<% end %>