Не добавлять комментарий, если с сервера пришло {"error":"SomeError"}

This commit is contained in:
isqua 2015-02-07 19:03:24 +03:00
parent ad5ace57cb
commit ec6eb34e22
1 changed files with 18 additions and 14 deletions

View File

@ -139,8 +139,9 @@ AjaxCommentProcessor.prototype.onSuccess = function(data, textStatus) {
var $textarea = this._$textarea;
if (textStatus === 'success') {
this.hideForm();
if (data.error) {
this.onError(null, null, data.error);
} else {
// Creating the comment HTML
create_comment_elements({
id: data.comment_id,
@ -151,10 +152,13 @@ AjaxCommentProcessor.prototype.onSuccess = function(data, textStatus) {
fadeOut: true
}, this.insertComment.bind(this));
this.hideForm();
// Cleaning textarea
$textarea.val('');
this.setProgress(false);
}
}
};
/**