mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* Automation tests for Viewer Component - Content Services * Create remaining automation tests for Viewer Component - Content Services * Deleting alfresco-ng2-components.iml * Correcting Viewer Page for failing tests * Updating Viewer Page for failing tests * Improving the PR quality
12 lines
460 B
HTML
12 lines
460 B
HTML
<div class="pdf-thumbnails__content"
|
|
data-automation-id='adf-thumbnails-content'
|
|
[style.height.px]="virtualHeight"
|
|
[style.transform]="'translate(-50%, ' + translateY + 'px)'">
|
|
<adf-pdf-thumb *ngFor="let page of renderItems; trackBy: trackByFn"
|
|
class="pdf-thumbnails__thumb"
|
|
[ngClass]="{'pdf-thumbnails__thumb--selected' : isSelected(page.id)}"
|
|
[page]="page"
|
|
(click)="goTo(page.id)">
|
|
</adf-pdf-thumb>
|
|
</div>
|