@@ -48,7 +48,7 @@ export class MdTooltip {
48
48
}
49
49
}
50
50
51
- /** The message to be displayed in the tooltip. */
51
+ /** The message to be displayed in the tooltip */
52
52
private _message : string ;
53
53
@Input ( 'md-tooltip' ) get message ( ) {
54
54
return this . _message ;
@@ -63,7 +63,7 @@ export class MdTooltip {
63
63
constructor ( private _overlay : Overlay , private _elementRef : ElementRef ,
64
64
private _viewContainerRef : ViewContainerRef , private _ngZone : NgZone ) { }
65
65
66
- /** Shows the tooltip. */
66
+ /** Shows the tooltip */
67
67
show ( ) : void {
68
68
if ( ! this . _tooltipRef ) {
69
69
this . _createTooltip ( ) ;
@@ -83,7 +83,7 @@ export class MdTooltip {
83
83
}
84
84
}
85
85
86
- /** Shows/hides the tooltip. */
86
+ /** Shows/hides the tooltip */
87
87
toggle ( ) : void {
88
88
if ( this . _isTooltipVisible ( ) ) {
89
89
this . hide ( ) ;
@@ -196,10 +196,10 @@ export class TooltipComponent {
196
196
/** The transform origin used in the animation for showing and hiding the tooltip */
197
197
_transformOrigin : string = 'bottom' ;
198
198
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 */
200
200
private _onHide : Subject < any > = new Subject ( ) ;
201
201
202
- /** Shows the tooltip with an animation originating from the provided origin. */
202
+ /** Shows the tooltip with an animation originating from the provided origin */
203
203
show ( position : TooltipPosition ) : void {
204
204
this . _closeOnInteraction = false ;
205
205
this . _visibility = 'visible' ;
@@ -215,7 +215,7 @@ export class TooltipComponent {
215
215
setTimeout ( ( ) => { this . _closeOnInteraction = true ; } , 0 ) ;
216
216
}
217
217
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 */
219
219
hide ( delay : number ) : void {
220
220
this . _hideTimeoutId = setTimeout ( ( ) => {
221
221
this . _visibility = 'hidden' ;
0 commit comments