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

18 lines
494 B
Plaintext
Raw Normal View History

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