remove trailing white-spaces from app/views/journals/_notes_form.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7240 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
e0246646af
commit
9416de069e
|
@ -1,11 +1,11 @@
|
||||||
<% form_remote_tag(:url => {}, :html => { :id => "journal-#{@journal.id}-form" }) do %>
|
<% form_remote_tag(:url => {}, :html => { :id => "journal-#{@journal.id}-form" }) do %>
|
||||||
<%= text_area_tag :notes, @journal.notes,
|
<%= text_area_tag :notes, @journal.notes,
|
||||||
:id => "journal_#{@journal.id}_notes",
|
:id => "journal_#{@journal.id}_notes",
|
||||||
:class => 'wiki-edit',
|
:class => 'wiki-edit',
|
||||||
:rows => (@journal.notes.blank? ? 10 : [[10, @journal.notes.length / 50].max, 100].min) %>
|
:rows => (@journal.notes.blank? ? 10 : [[10, @journal.notes.length / 50].max, 100].min) %>
|
||||||
<%= call_hook(:view_journals_notes_form_after_notes, { :journal => @journal}) %>
|
<%= call_hook(:view_journals_notes_form_after_notes, { :journal => @journal}) %>
|
||||||
<p><%= submit_tag l(:button_save) %>
|
<p><%= submit_tag l(:button_save) %>
|
||||||
<%= link_to_remote l(:label_preview),
|
<%= link_to_remote l(:label_preview),
|
||||||
{ :url => preview_issue_path(:project_id => @project, :id => @journal.issue),
|
{ :url => preview_issue_path(:project_id => @project, :id => @journal.issue),
|
||||||
:method => 'post',
|
:method => 'post',
|
||||||
:update => "journal_#{@journal.id}_preview",
|
:update => "journal_#{@journal.id}_preview",
|
||||||
|
|
Loading…
Reference in New Issue