To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / journals / edit.js.erb @ 1591:63650ae64bf2

History | View | Annotate | Download (314 Bytes)

1
$("#journal-<%= @journal.id %>-notes").hide();
2

    
3
if ($("form#journal-<%= @journal.id %>-form").length > 0) {
4
  // journal edit form already loaded
5
  $("#journal-<%= @journal.id %>-form").show();
6
} else {
7
  $("#journal-<%= @journal.id %>-notes").after('<%= escape_javascript(render :partial => 'notes_form') %>');
8
}