alfresco-ng2-components/lib/core/pagination/infinite-pagination.component.html
Eugenio Romano 5f8b41411a
[NO-ISSUE] RE enable failing test (#3168)
* restore viewer test

* fix content node selector breadcrumb tests

* fix skipped test

* notification service uncomment test

* remove duplicated test
exclude dialog test
2018-04-11 09:03:03 +01:00

15 lines
540 B
HTML

<div *ngIf="pagination?.hasMoreItems || isLoading" class="adf-infinite-pagination">
<button mat-button
*ngIf="!isLoading"
class="adf-infinite-pagination-load-more"
(click)="onLoadMore($event)"
data-automation-id="adf-infinite-pagination-button">
<ng-content></ng-content>
</button>
<mat-progress-bar *ngIf="isLoading"
mode="indeterminate"
class="adf-infinite-pagination-spinner"
data-automation-id="adf-infinite-pagination-spinner"></mat-progress-bar>
</div>