annotate app/views/journals/update.rjs @ 608:c7559c3a8d03 feature_36

Fixed a bug when a validation error occurs: keeps the project_id so that the publication is still saved in the same circumstances.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Thu, 18 Aug 2011 22:27:19 +0100
parents 513646585e45
children
rev   line source
Chris@0 1 if @journal.frozen?
Chris@0 2 # journal was destroyed
Chris@0 3 page.remove "change-#{@journal.id}"
Chris@0 4 else
Chris@0 5 page.replace "journal-#{@journal.id}-notes", render_notes(@journal.issue, @journal, :reply_links => authorize_for('issues', 'edit'))
Chris@0 6 page.show "journal-#{@journal.id}-notes"
Chris@0 7 page.remove "journal-#{@journal.id}-form"
Chris@0 8 end
Chris@0 9
Chris@0 10 call_hook(:view_journals_update_rjs_bottom, { :page => page, :journal => @journal })