Skip to content

Commit

Permalink
docs(slides): document spaceBetween and slidesPerView
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed Jan 17, 2017
1 parent 70d66c6 commit c8bb64b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/slides/slides.ts
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,9 @@ export class Slides extends Ion {

// Slides grid

/**
* @input {number} Distance between slides in px. Default: `0`.
*/
@Input()
get spaceBetween() {
return this._spaceBetween;
Expand All @@ -342,6 +345,9 @@ export class Slides extends Ion {
}
private _spaceBetween = 0;

/**
* @input {number} Slides per view. Slides visible at the same time. Default: `1`.
*/
@Input()
get slidesPerView() {
return this._slidesPerView;
Expand Down

0 comments on commit c8bb64b

Please sign in to comment.