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:
Abijeet 2018-01-19 00:44:58 +05:30
parent 8cdbb1ccd8
commit facd1cae2f
1 changed files with 6 additions and 0 deletions

View File

@ -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);