##// END OF EJS Templates
Replaced window.hash= by Element.scrollTo()...
Replaced window.hash= by Element.scrollTo() git-svn-id: http://redmine.rubyforge.org/svn/trunk@1136 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1091:bea49ae24532
r1122:93ef8b7f77ec
Show More
_history.rhtml
13 lines | 463 B | text/html+ruby | RhtmlLexer
<% note_id = 1 %>
<% for journal in journals %>
<h4><div style="float:right;"><%= link_to "##{note_id}", :anchor => "note-#{note_id}" %></div>
<%= content_tag('a', '', :name => "note-#{note_id}")%>
<%= format_time(journal.created_on) %> - <%= journal.user.name %></h4>
<ul>
<% for detail in journal.details %>
<li><%= show_detail(detail) %></li>
<% end %>
</ul>
<%= render_notes(journal) unless journal.notes.blank? %>
<% note_id += 1 %>
<% end %>