annotate app/views/documents/_document.html.erb @ 1215:2101a7c906b3
cannam
Fix failure to truncate long descriptions without carriage returns in them correctly
author |
Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
date |
Tue, 12 Mar 2013 10:29:50 +0000 |
parents |
cbb26bc654de |
children |
433d4f72a19b |
rev |
line source |
Chris@0
|
1 <h4><%= link_to h(document.title), :controller => 'documents', :action => 'show', :id => document %></h4>
|
Chris@0
|
2 <p><em><%= format_time(document.updated_on) %></em></p>
|
Chris@0
|
3
|
Chris@0
|
4 <div class="wiki">
|
Chris@909
|
5 <%= textilizable(truncate_lines(document.description), :object => document) %>
|
Chris@0
|
6 </div>
|