view app/views/journals/update.rjs @ 567:5404f7dfb4b3 feature_36

Move set_initial_author_order to before_save to avoid duplicate author creation; Remove unwanted has-one relationship between user and publication
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Tue, 09 Aug 2011 14:30:22 +0100
parents 513646585e45
children
line wrap: on
line source
if @journal.frozen?
  # journal was destroyed
  page.remove "change-#{@journal.id}"
else
  page.replace "journal-#{@journal.id}-notes", render_notes(@journal.issue, @journal, :reply_links => authorize_for('issues', 'edit'))
  page.show "journal-#{@journal.id}-notes"
  page.remove "journal-#{@journal.id}-form"
end

call_hook(:view_journals_update_rjs_bottom, { :page => page, :journal => @journal })