docs(): update docs

This commit is contained in:
mhartington
2016-09-26 21:11:46 -04:00
parent eb2b879b37
commit dbfc183cac
6 changed files with 36 additions and 7 deletions

View File

@ -862,6 +862,10 @@ export class Slide {
constructor(
elementRef: ElementRef,
/**
* @private
*/
@Host() public slides: Slides
) {
this.ele = elementRef.nativeElement;
@ -870,6 +874,9 @@ export class Slide {
slides.rapidUpdate();
}
/**
* @private
*/
ngOnDestroy() {
this.slides.rapidUpdate();
}