Skip to content

Commit

Permalink
Add loop input to GalleryComponent, closes #98
Browse files Browse the repository at this point in the history
  • Loading branch information
MurhafSousli committed Jul 3, 2018
1 parent 9b44455 commit 727a4ca
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions projects/core/src/lib/components/gallery.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export class GalleryComponent implements OnInit, OnChanges, OnDestroy {
@Input() items: GalleryItem [];
@Input() nav: boolean = this._gallery.config.nav;
@Input() dots: boolean = this._gallery.config.dots;
@Input() loop: boolean = this._gallery.config.loop;
@Input() fluid: boolean = this._gallery.config.fluid;
@Input() thumb: boolean = this._gallery.config.thumb;
@Input() zoomOut: number = this._gallery.config.zoomOut;
Expand Down Expand Up @@ -80,6 +81,7 @@ export class GalleryComponent implements OnInit, OnChanges, OnDestroy {
return {
nav: this.nav,
dots: this.dots,
loop: this.loop,
fluid: this.fluid,
thumb: this.thumb,
zoomOut: this.zoomOut,
Expand Down

0 comments on commit 727a4ca

Please sign in to comment.