Skip to content

Commit

Permalink
fix(tooltip): fix containerClass when isOpen is true (valor-software#…
Browse files Browse the repository at this point in the history
  • Loading branch information
tarusin authored and leo6104 committed Oct 10, 2019
1 parent d996f8f commit 43f92e3
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/tooltip/tooltip.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ export class TooltipDirective implements OnInit, OnDestroy {
* Currently only supports "body".
*/
@Input() container: string;

/**
* Css class for tooltip container
*/
@Input() containerClass = '';
/**
* Returns whether or not the tooltip is currently being shown
*/
Expand All @@ -70,10 +73,6 @@ export class TooltipDirective implements OnInit, OnDestroy {
*/
@Input() isDisabled: boolean;

/**
* Css class for tooltip container
*/
@Input() containerClass = '';
/**
* Delay before showing the tooltip
*/
Expand Down

0 comments on commit 43f92e3

Please sign in to comment.