gitlabhq/app/views/notes/create.js.haml
2011-10-09 00:36:38 +03:00

9 lines
292 B
Plaintext

- if @note.valid?
:plain
$("#new_note .errors").remove();
$("#notes-list").append("#{escape_javascript(render(:partial => 'show', :locals => {:note => @note} ))}");
$('#note_note').val("");
- else
:plain
$("#new_note").replaceWith("#{escape_javascript(render('form'))}");