index.js.haml 430 Bytes
- unless @notes.blank?
  var notesHtml = "#{escape_javascript(render 'notes/notes')}";
  - new_note_ids = @notes.map(&:id)
  - if loading_more_notes?
    NoteList.appendMoreNotes(#{new_note_ids}, notesHtml);

  - elsif loading_new_notes?
    NoteList.replaceNewNotes(#{new_note_ids}, notesHtml);

  - else
    NoteList.setContent(#{new_note_ids}, notesHtml);

- else
  - if loading_more_notes?
    NoteList.finishedLoadingMore();