fix load more of progress - fix for #341

This commit is contained in:
Peli de Halleux 2015-11-20 09:25:44 -08:00
Родитель dc806eb4b2
Коммит 3250f93cfc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -3578,7 +3578,7 @@
this.tabContent.appendChild(loading);
this.loadMoreElementsAnd(cont, (elts:JsonPublication[], cont:string) => {
loading.removeSelf();
elts.forEach((c) => this.tabContent.appendChild(this.tabBox(c)));
elts.map(c => this.tabBox(c)).filter(elt => !!elt).forEach(elt => this.tabContent.appendChild(elt));
if (!!cont) this.tabContent.appendChild(this.loadMoreBtn(cont));
else this.tabContent.appendChild(this.finalListElt())
});