_load.js.haml 489 Bytes
- unless @notes.blank?
  - if loading_more_notes?
    :plain
      NoteList.appendMoreNotes(#{@notes.last.id}, "#{escape_javascript(render 'notes/notes_list')}");

  - elsif loading_new_notes?
    :plain
      NoteList.replaceNewNotes("#{escape_javascript(render 'notes/notes_list')}");

  - else
    :plain
      NoteList.setContent(#{@notes.last.id}, "#{escape_javascript(render 'notes/notes_list')}");

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