chore(docs): updating dgeni typescript package

This commit is contained in:
perry
2017-03-14 14:50:31 -05:00
parent 4354fc212e
commit 396f891f33
160 changed files with 760 additions and 2014 deletions

View File

@@ -85,29 +85,29 @@ export class Scroll {
}
/**
* @private
* @hidden
*/
maxScale: number = 3;
/**
* @private
* @hidden
*/
zoomDuration: number = 250;
/**
* @private
* @hidden
*/
scrollElement: HTMLElement;
constructor(private _elementRef: ElementRef) {}
/**
* @private
* @hidden
*/
ngOnInit() {
this.scrollElement = this._elementRef.nativeElement.children[0];
}
/**
* @private
* @hidden
* Add a scroll event handler to the scroll element if it exists.
* @param {Function} handler The scroll handler to add to the scroll element.
* @returns {?Function} a function to remove the specified handler, otherwise