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

12 lines
252 B
Plaintext
Raw Normal View History

2011-10-08 23:36:38 +02:00
- if @note.valid?
:plain
$("#new_note .errors").remove();
2011-10-20 18:21:58 +02:00
updatePage();
2011-10-08 23:36:38 +02:00
$('#note_note').val("");
- else
:plain
$("#new_note").replaceWith("#{escape_javascript(render('form'))}");
2011-10-17 19:05:47 +02:00
:plain
$("#submit_note").removeAttr("disabled");