Skip to content

Commit

Permalink
fix: remove useless property
Browse files Browse the repository at this point in the history
  • Loading branch information
Wendell committed Aug 13, 2019
1 parent 9b2f808 commit 96f0eac
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions components/tooltip/base/nz-tooltip-base-legacy.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,7 @@
*/

import { CdkConnectedOverlay } from '@angular/cdk/overlay';
import {
ChangeDetectorRef,
ContentChild,
EventEmitter,
Host,
Input,
OnChanges,
Optional,
Output,
TemplateRef,
ViewChild
} from '@angular/core';
import { ChangeDetectorRef, EventEmitter, Host, Input, OnChanges, Optional, Output, ViewChild } from '@angular/core';
import { toBoolean, NgStyleInterface, NzNoAnimationDirective, POSITION_MAP } from 'ng-zorro-antd/core';

import { NzTooltipTrigger } from '../nz-tooltip.definitions';
Expand All @@ -42,7 +31,6 @@ import { NzTooltipBaseComponent } from './nz-tooltip-base.component';
export class NzTooltipBaseComponentLegacy extends NzTooltipBaseComponent implements OnChanges {
@ViewChild('overlay', { static: false }) overlay: CdkConnectedOverlay;

@Input() @ContentChild('nzTemplate', { static: true }) contentTitle: string | TemplateRef<void> | null;
@Input() nzOverlayClassName = '';
@Input() nzOverlayStyle: NgStyleInterface = {};
@Input() nzMouseEnterDelay = 0.15; // second
Expand Down

0 comments on commit 96f0eac

Please sign in to comment.