Fixes issue where saving a non-modified comment kept the edit window open.
Now irrespective of the whether the comment has been modified we are going to go back to the view mode. Signed-off-by: Abijeet <abijeetpatro@gmail.com>
This commit is contained in:
parent
8cdbb1ccd8
commit
facd1cae2f
|
@ -668,6 +668,12 @@
|
|||
}, {
|
||||
success: function(model) {
|
||||
self._onSubmitSuccess(model, $form);
|
||||
if(model.get('message').trim() === model.previous('message').trim()) {
|
||||
// model change event doesn't trigger, manually remove the row.
|
||||
var $row = $form.closest('.comment');
|
||||
$row.data('commentEl').removeClass('hidden');
|
||||
$row.remove();
|
||||
}
|
||||
},
|
||||
error: function() {
|
||||
self._onSubmitError($form, commentId);
|
||||
|
|
Loading…
Reference in New Issue