2012-09-18 19:42:22 +01:00
|
|
|
$(document).ready(function() {
|
|
|
|
$('.buttons a.edit_comment').live('click', function() {
|
|
|
|
$(this).parent().parent().parent().hide();
|
|
|
|
$('#open-comment'+'.comment.'+$(this).attr('id')).show();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.cancel_edit_comment.button').live('click', function() {
|
|
|
|
$(this).parent().parent().parent().hide();
|
|
|
|
$('.buttons a.edit_comment#'+$(this).attr('id')).parent().parent().parent().show();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
$('form.edit_comment').live('submit', function() {
|
|
|
|
var form = $(this);
|
2012-09-24 18:34:14 +01:00
|
|
|
form.parent().find('.flash').remove();
|
2012-09-18 19:42:22 +01:00
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
|
|
|
url: form.attr("action"),
|
|
|
|
data: form.serialize(),
|
|
|
|
success: function(data){
|
|
|
|
var cancel_button = form.find('.cancel_edit_comment.button');
|
|
|
|
cancel_button.click();
|
2012-09-21 11:31:55 +01:00
|
|
|
$('.buttons a.edit_comment#'+cancel_button.attr('id')).parent().parent().find('.cm-s-default.md_and_cm').html(data).find('code').each(function (code) { CodeMirrorRun(this); })
|
2012-09-18 19:42:22 +01:00
|
|
|
},
|
|
|
|
error: function(data){
|
2012-09-24 18:34:14 +01:00
|
|
|
form.before(data.responseText);
|
2012-09-18 19:42:22 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
});
|