Fixed post list presenter not updating queries

This commit is contained in:
Marcin Kurczewski 2014-10-10 21:27:24 +02:00
parent a1b71ed9e1
commit f93fd2c31c

View file

@ -55,7 +55,9 @@ App.Presenters.PostListPresenter = function(
jQuery(window).on('resize', windowResized);
}
function reinit(params, loaded) {
function reinit(_params, loaded) {
params = _params;
params.query = params.query || {};
pagerPresenter.reinit({query: params.query});
loaded();
softRender();