Fixed errors in mass tag being silenced

This commit is contained in:
Marcin Kurczewski 2014-11-04 19:30:37 +01:00
parent ec2fe23f7e
commit d3fb910249

View file

@ -198,7 +198,7 @@ App.Presenters.PostListPresenter = function(
$post.data('post', post); $post.data('post', post);
softRenderPost($post); softRenderPost($post);
}).fail(function(response) { }).fail(function(response) {
console.log(response); window.alert(response.json && response.json.error || response);
}); });
} }