Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/lib/tooltip/tooltip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,10 @@ export class MdTooltip {
export type TooltipVisibility = 'visible' | 'hidden';

@Component({
moduleId: module.id,

selector: 'md-tooltip-component',
templateUrl: 'tooltip.html',
styleUrls: ['tooltip.css'],
styleUrls: ['tooltip.scss'],
animations: [
trigger('state', [
state('void', style({transform: 'scale(0)'})),
Expand All @@ -210,7 +210,7 @@ export class TooltipComponent {
message: string;

/** The timeout ID of any current timer set to hide the tooltip */
_hideTimeoutId: number;
_hideTimeoutId: NodeJS.Timer;

/** Property watched by the animation framework to show or hide the tooltip */
_visibility: TooltipVisibility;
Expand Down