Commit 620c0b8696f220b2fae63d77e55c296c300573fd

Authored by Rodrigo Souto
2 parents 6871a9ec e9199bdd

Merge commit 'refs/merge-requests/307' of git://gitorious.org/noosfero/noosfero …

…into merge-requests/307
app/views/contact/new.rhtml
... ... @@ -19,7 +19,10 @@
19 19 <%= labelled_form_field _('City and state'), location_fields %>
20 20 <% end %>
21 21 <%= required f.text_field(:subject) %>
22   - <%= required f.text_area(:message, :rows => 10, :cols => 60) %>
  22 +
  23 + <%= render :file => 'shared/tiny_mce' %>
  24 + <%= required f.text_area(:message, :class => 'mceEditor') %>
  25 +
23 26 <%= labelled_form_field check_box(:contact, :receive_a_copy) + _('I want to receive a copy of the message in my e-mail.'), '' %>
24 27  
25 28 <%= submit_button(:send, _('Send'), :onclick => "$('confirm').value = 'true'") %>
... ...
app/views/profile/send_mail.rhtml
... ... @@ -4,11 +4,13 @@
4 4  
5 5 <%= error_messages_for :mailing %>
6 6  
7   -<%= render :file => 'shared/tiny_mce' %>
8   -
9 7 <% form_for :mailing, :url => {:action => 'send_mail'}, :html => {:id => 'mailing-form'} do |f| %>
  8 +
10 9 <%= labelled_form_field(_('Subject:'), f.text_field(:subject)) %>
  10 +
  11 + <%= render :file => 'shared/tiny_mce' %>
11 12 <%= labelled_form_field(_('Body:'), f.text_area(:body, :class => 'mceEditor')) %>
  13 +
12 14 <%= submit_button(:send, _('Send')) %>
13 15 <%= button :cancel, _('Cancel e-mail'), :back %>
14 16 <% end %>
... ...