Skip to content

Commit

Permalink
fix(tooltip): fix appendToBody tooltip positioning (#1158) (#1159)
Browse files Browse the repository at this point in the history
  • Loading branch information
DethAriel authored and valorkin committed Oct 26, 2016
1 parent c6da387 commit 0fd0a80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/tooltip/tooltip-options.class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export class TooltipOptions {
public placement:string;
public popupClass:string;
public animation:boolean;
public appendToBody:boolean;
public isOpen:boolean;
public content:string;
public htmlContent:any;
Expand Down
1 change: 1 addition & 0 deletions components/tooltip/tooltip.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export class TooltipDirective {
htmlContent: this.htmlContent,
placement: this.placement,
animation: this.animation,
appendToBody: this.appendToBody,
hostEl: this.viewContainerRef.element,
popupClass: this.popupClass,
context: this.tooltipContext
Expand Down

0 comments on commit 0fd0a80

Please sign in to comment.