]> git.openstreetmap.org Git - rails.git/commitdiff
Rails no longer gives textareas a default size
authorTom Hughes <tom@compton.nu>
Sun, 22 Sep 2013 09:14:50 +0000 (10:14 +0100)
committerTom Hughes <tom@compton.nu>
Sun, 22 Sep 2013 09:33:31 +0000 (10:33 +0100)
app/views/diary_entry/edit.html.erb
app/views/message/new.html.erb

index 93e7631ed6e4365be40b279f0e55edcd86bf5984..af23262d52310fe437bf4ffc604a289f2562b0c5 100644 (file)
@@ -17,7 +17,7 @@
       </div>
       <div class='form-row'>
         <label class="standard-label"><%= t 'diary_entry.edit.body' -%></label>
-        <%= richtext_area :diary_entry, :body, :format => @diary_entry.body_format %>
+        <%= richtext_area :diary_entry, :body, :cols => 80, :rows => 20, :format => @diary_entry.body_format %>
       </div>
       <div clas='form-row'>
         <label class="standard-label"><%= t 'diary_entry.edit.language' -%></label>
index 32344a3e9008edc3d196f9231b12d387056a66cb..ac8fe7f497709d10308de180f7bdd860448c12f7 100644 (file)
@@ -12,7 +12,7 @@
     </div>
     <div class='form-row'>
       <label class="standard-label"><%= t'message.new.body' %></label>
-      <%= richtext_area :message, :body, :cols => 80, :value => @body %>
+      <%= richtext_area :message, :body, :cols => 80, :rows => 20, :value => @body %>
     </div>
     <div class='buttons'>
       <%= submit_tag t('message.new.send_button') %>