You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 20, 2018. It is now read-only.
I would like a small addition to this package at the points.
Actually at the points template inside the li's I would like to add a button wth specific class:
<button class="ngxcarouselPointLiButton">
It would be very helpfull in order to support progress bar style buttons at the points.
this change can be performed at ngx-carousel.component.js at template in line 539.
instead of:
template: "<div #ngxcarousel class="ngxcarousel"><div #forTouch class="ngxcarousel-inner"><div #ngxitems class="ngxcarousel-items"><ng-content select="[NgxCarouselItem]"><div style="clear: both"><ng-content select="[NgxCarouselPrev]"><ng-content select="[NgxCarouselNext]"><div #points *ngIf="userData.point.visible"><ul class="ngxcarouselPoint"><li #pointInner *ngFor="let i of pointNumbers; let i=index" [class.active]="i==pointers" (click)="moveTo(i)">",
to be
template: "<div #ngxcarousel class="ngxcarousel"><div #forTouch class="ngxcarousel-inner"><div #ngxitems class="ngxcarousel-items"><ng-content select="[NgxCarouselItem]"><div style="clear: both"><ng-content select="[NgxCarouselPrev]"><ng-content select="[NgxCarouselNext]"><div #points *ngIf="userData.point.visible"><ul class="ngxcarouselPoint"><li #pointInner *ngFor="let i of pointNumbers; let i=index" [class.active]="i==pointers" (click)="moveTo(i)"><button class="ngxcarouselPointLiButton">",
The text was updated successfully, but these errors were encountered:
I would like a small addition to this package at the points.
Actually at the points template inside the li's I would like to add a button wth specific class:
<button class="ngxcarouselPointLiButton">
It would be very helpfull in order to support progress bar style buttons at the points.
this change can be performed at ngx-carousel.component.js at template in line 539.
instead of:
template: "<div #ngxcarousel class="ngxcarousel"><div #forTouch class="ngxcarousel-inner"><div #ngxitems class="ngxcarousel-items"><ng-content select="[NgxCarouselItem]"><div style="clear: both"><ng-content select="[NgxCarouselPrev]"><ng-content select="[NgxCarouselNext]"><div #points *ngIf="userData.point.visible"><ul class="ngxcarouselPoint"><li #pointInner *ngFor="let i of pointNumbers; let i=index" [class.active]="i==pointers" (click)="moveTo(i)">",
to be
template: "<div #ngxcarousel class="ngxcarousel"><div #forTouch class="ngxcarousel-inner"><div #ngxitems class="ngxcarousel-items"><ng-content select="[NgxCarouselItem]"><div style="clear: both"><ng-content select="[NgxCarouselPrev]"><ng-content select="[NgxCarouselNext]"><div #points *ngIf="userData.point.visible"><ul class="ngxcarouselPoint"><li #pointInner *ngFor="let i of pointNumbers; let i=index" [class.active]="i==pointers" (click)="moveTo(i)"><button class="ngxcarouselPointLiButton">",
The text was updated successfully, but these errors were encountered: