view app/views/journals/_notes_form.rhtml @ 127:32b5adec7422 cannam

Bug #51: make New Member box show matching users only when at least 2 characters have been typed in search (avoid really long results lists)
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Wed, 19 Jan 2011 13:27:01 +0000
parents 513646585e45
children cbce1fd3b1b7
line wrap: on
line source
<% form_remote_tag(:url => {}, :html => { :id => "journal-#{@journal.id}-form" }) do %>
    <%= text_area_tag :notes, @journal.notes, :class => 'wiki-edit', 
                                              :rows => (@journal.notes.blank? ? 10 : [[10, @journal.notes.length / 50].max, 100].min) %>
    <%= call_hook(:view_journals_notes_form_after_notes, { :journal => @journal}) %>
    <p><%= submit_tag l(:button_save) %>
    <%= link_to l(:button_cancel), '#', :onclick => "Element.remove('journal-#{@journal.id}-form'); " +
                                                    "Element.show('journal-#{@journal.id}-notes'); return false;" %></p>
<% end %>