summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-09-15 09:26:29 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-09-15 09:26:29 +0000
commit9416de069e37b78f7384831e99d1e1d9c51224f3 (patch)
tree9ea4f35d5d04a7fdb518e03d06e203e73a1d89ac /app/views
parente0246646af6eb9ef10bf596016d2f5169a15a7a8 (diff)
downloadredmine-9416de069e37b78f7384831e99d1e1d9c51224f3.tar.gz
redmine-9416de069e37b78f7384831e99d1e1d9c51224f3.zip
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
Diffstat (limited to 'app/views')
-rw-r--r--app/views/journals/_notes_form.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/journals/_notes_form.html.erb b/app/views/journals/_notes_form.html.erb
index 7e44f4a91..b6973d16d 100644
--- a/app/views/journals/_notes_form.html.erb
+++ b/app/views/journals/_notes_form.html.erb
@@ -1,11 +1,11 @@
<% form_remote_tag(:url => {}, :html => { :id => "journal-#{@journal.id}-form" }) do %>
<%= text_area_tag :notes, @journal.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) %>
<%= call_hook(:view_journals_notes_form_after_notes, { :journal => @journal}) %>
<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),
:method => 'post',
:update => "journal_#{@journal.id}_preview",