gitlabhq/app/views/notes/index.js.haml

19 lines
523 B
Plaintext
Raw Normal View History

2012-09-14 05:05:37 +02:00
- unless @notes.blank?
- new_note_ids = @notes.map(&:id)
2012-09-14 05:05:37 +02:00
- if loading_more_notes?
:plain
NoteList.appendMoreNotes(#{new_note_ids}, "#{escape_javascript(render 'notes/notes')}");
2012-09-14 05:05:37 +02:00
- elsif loading_new_notes?
:plain
NoteList.replaceNewNotes(#{new_note_ids}, "#{escape_javascript(render 'notes/notes')}");
2012-09-14 05:05:37 +02:00
- else
:plain
NoteList.setContent(#{new_note_ids}, "#{escape_javascript(render 'notes/notes')}");
2012-09-14 05:05:37 +02:00
- else
- if loading_more_notes?
:plain
NoteList.finishedLoadingMore();