Fixed stack trace in home when no post is featured

This commit is contained in:
Marcin Kurczewski 2014-11-09 21:28:27 +01:00
parent b4043313d4
commit d4f245e414

View file

@ -38,9 +38,11 @@ App.Presenters.HomePresenter = function(
render();
loaded();
presenterManager.initPresenters([
[postContentPresenter, {post: post, $target: $el.find('#post-content-target')}]],
function() {});
if ($el.find('#post-content-target').length > 0) {
presenterManager.initPresenters([
[postContentPresenter, {post: post, $target: $el.find('#post-content-target')}]],
function() {});
}
}).fail(function(response) {
messagePresenter.showError($el, response.json && response.json.error || response);