2008-04-28 05:53:24 +00:00
|
|
|
<%= link_to(image_tag( 'blank.png', :width=>'16', :height=>'16', :border=>'0' ), "#", {:class => 'show_notes', :title => 'Show notes'}) %>
|
2007-03-30 04:36:52 +00:00
|
|
|
<% apply_behavior 'a.show_notes:click', :prevent_default => true do |page, element|
|
2008-06-12 07:31:25 +00:00
|
|
|
element.next('.todo_notes').toggle
|
|
|
|
|
end -%>
|
|
|
|
|
<div class="todo_notes" id="<%= dom_id(item, 'notes') %>" style="display:none">
|
2008-06-13 06:34:32 +00:00
|
|
|
<%= markdown( item.notes.gsub(/((https?:\/\/[^ \n\t]*))/, '"\1":\2') ) %>
|
2008-06-12 07:31:25 +00:00
|
|
|
</div>
|