summaryrefslogtreecommitdiff
path: root/app/views/notes/_create_common.js.haml
blob: 583812bf5027457d82b38323da75311494d32eb9 (plain)
1
2
3
4
5
6
7
8
9
- if note.valid?
  :plain
    $("#new_note .errors").remove();
    $('#new_note textarea').val("");
    NoteList.prepend(#{note.id}, "#{escape_javascript(render :partial => "notes/show", :locals => {:note => note})}");
- else
  :plain
    $("#new_note").replaceWith("#{escape_javascript(render('form'))}");