This commit is contained in:
perry
2015-12-04 17:38:46 -06:00

View File

@ -59,9 +59,10 @@ import {Scroll} from '../scroll/scroll';
*}) *})
* *
*``` *```
* @property {Any} [autoplay] - whether or not the slides should automatically change * @property {Boolean} [autoplay] - whether or not the slides should automatically change
* @property {Any} [loop] - whether the slides should loop from the last slide back to the first * @property {Boolean} [loop] - whether the slides should loop from the last slide back to the first
* @property {Any} [bounce] - whether the slides should bounce * @property {Boolean} [bounce] - whether the slides should bounce
* @property {Number} [index] - The slide index to start on
* @property [pager] - add this property to enable the slide pager * @property [pager] - add this property to enable the slide pager
* @property {Any} [slideChanged] - expression to evaluate when a slide has been changed * @property {Any} [slideChanged] - expression to evaluate when a slide has been changed
* @see {@link /docs/v2/components#slides Slides Component Docs} * @see {@link /docs/v2/components#slides Slides Component Docs}
@ -499,7 +500,6 @@ export class Slides extends Ion {
* Update the underlying slider implementation. Call this if you've added or removed * Update the underlying slider implementation. Call this if you've added or removed
* child slides. * child slides.
*/ */
*/
update() { update() {
setTimeout(() => { setTimeout(() => {
this.slider.update(); this.slider.update();
@ -587,7 +587,7 @@ export class Slide {
} }
/** /**
* @priavte * @private
*/ */
@Directive({ @Directive({
selector: 'slide-lazy', selector: 'slide-lazy',