diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-04-13 13:24:03 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-04-13 13:24:03 +0000 |
commit | e64443571552e46fa1ecc34833e6f765b816a837 (patch) | |
tree | ca2ceaebc0bcd69faac17f450bf2eea5fc0668ee /app/views | |
parent | 97fe797ad36389ea4719e90677408d9eed0cb369 (diff) | |
download | redmine-e64443571552e46fa1ecc34833e6f765b816a837.tar.gz redmine-e64443571552e46fa1ecc34833e6f765b816a837.zip |
Add css class for ticket changes (#1032).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1349 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/issues/_history.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/_history.rhtml b/app/views/issues/_history.rhtml index 373758874..f29a44daf 100644 --- a/app/views/issues/_history.rhtml +++ b/app/views/issues/_history.rhtml @@ -1,5 +1,5 @@ <% for journal in journals %> - <div id="change-<%= journal.id %>"> + <div id="change-<%= journal.id %>" class="journal"> <h4><div style="float:right;"><%= link_to "##{journal.indice}", :anchor => "note-#{journal.indice}" %></div> <%= content_tag('a', '', :name => "note-#{journal.indice}")%> <%= format_time(journal.created_on) %> - <%= journal.user.name %></h4> |