annotate app/views/journals/update.rjs @ 182:5b074cadc4d1
feature_55
Institution order number explicit in seed data file and now correctly processed.
author |
luisf |
date |
Thu, 03 Feb 2011 14:42:31 +0000 |
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 })
|