All files / src/app/shared/cms/components/cms-carousel cms-carousel.component.html

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 231x                                            
<div *ngIf="pagelet" [ngClass]="pagelet.stringParam('CSSClass')">
  <ish-content-slot [wrapper]="true" [slot]="'app_sf_base_cm:slot.carousel.items.pagelet2-Slot'" [pagelet]="pagelet">
    <div [ngClass]="pagelet.stringParam('CarouselCSSClass')">
      <ngb-carousel
        #ngbCarousel
        [interval]="0"
        [showNavigationArrows]="pageletSlides?.length > 1"
        [showNavigationIndicators]="pagelet.booleanParam('ShowIndicators')"
      >
        <ng-template ngbSlide *ngFor="let slidePagelets of pageletSlides">
          <div class="row">
            <ng-container *ngFor="let slidePagelet of slidePagelets">
              <div [ngClass]="'col-sm-' + itemGridSize">
                <ish-content-pagelet [pageletId]="slidePagelet" />
              </div>
            </ng-container>
          </div>
        </ng-template>
      </ngb-carousel>
    </div>
  </ish-content-slot>
</div>