diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-10-29 01:23:23 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-10-29 01:23:23 +0000 |
commit | c6870edd55f7d8bdeb9bd4e4c542f24a4c8ea104 (patch) | |
tree | 2fb7bb4a74542b44e7d0a80135f91ebb4247fc72 /app | |
parent | 23cf476891a2bfffb93bb9c424f53e3d70a2a931 (diff) | |
download | redmine-c6870edd55f7d8bdeb9bd4e4c542f24a4c8ea104.tar.gz redmine-c6870edd55f7d8bdeb9bd4e4c542f24a4c8ea104.zip |
[#9489] added invisible label
Contributed by Romano Licker.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7694 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/journals/_notes_form.html.erb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/journals/_notes_form.html.erb b/app/views/journals/_notes_form.html.erb index b6973d16d..ef95f9df9 100644 --- a/app/views/journals/_notes_form.html.erb +++ b/app/views/journals/_notes_form.html.erb @@ -1,4 +1,5 @@ <% form_remote_tag(:url => {}, :html => { :id => "journal-#{@journal.id}-form" }) do %> + <%= label_tag "notes", l(:description_notes), :class => "hidden-for-sighted" %> <%= text_area_tag :notes, @journal.notes, :id => "journal_#{@journal.id}_notes", :class => 'wiki-edit', |