@@ -48,7 +48,7 @@ export class MdTooltip {
4848 }
4949 }
5050
51- /** The message to be displayed in the tooltip. */
51+ /** The message to be displayed in the tooltip */
5252 private _message : string ;
5353 @Input ( 'md-tooltip' ) get message ( ) {
5454 return this . _message ;
@@ -63,7 +63,7 @@ export class MdTooltip {
6363 constructor ( private _overlay : Overlay , private _elementRef : ElementRef ,
6464 private _viewContainerRef : ViewContainerRef , private _ngZone : NgZone ) { }
6565
66- /** Shows the tooltip. */
66+ /** Shows the tooltip */
6767 show ( ) : void {
6868 if ( ! this . _tooltipRef ) {
6969 this . _createTooltip ( ) ;
@@ -83,7 +83,7 @@ export class MdTooltip {
8383 }
8484 }
8585
86- /** Shows/hides the tooltip. */
86+ /** Shows/hides the tooltip */
8787 toggle ( ) : void {
8888 if ( this . _isTooltipVisible ( ) ) {
8989 this . hide ( ) ;
@@ -196,10 +196,10 @@ export class TooltipComponent {
196196 /** The transform origin used in the animation for showing and hiding the tooltip */
197197 _transformOrigin : string = 'bottom' ;
198198
199- /** Subject for notifying that the tooltip has been hidden from the view. */
199+ /** Subject for notifying that the tooltip has been hidden from the view */
200200 private _onHide : Subject < any > = new Subject ( ) ;
201201
202- /** Shows the tooltip with an animation originating from the provided origin. */
202+ /** Shows the tooltip with an animation originating from the provided origin */
203203 show ( position : TooltipPosition ) : void {
204204 this . _closeOnInteraction = false ;
205205 this . _visibility = 'visible' ;
@@ -215,7 +215,7 @@ export class TooltipComponent {
215215 setTimeout ( ( ) => { this . _closeOnInteraction = true ; } , 0 ) ;
216216 }
217217
218- /** Begins the animation to hide the tooltip after the provided delay in ms. */
218+ /** Begins the animation to hide the tooltip after the provided delay in ms */
219219 hide ( delay : number ) : void {
220220 this . _hideTimeoutId = setTimeout ( ( ) => {
221221 this . _visibility = 'hidden' ;
0 commit comments