Skip to content

Commit

Permalink
fix whitespece issues
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierceulemans committed Mar 27, 2016
1 parent 24ff130 commit 3bb0a01
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/tooltip/tooltip-container.component.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {
Component,
Component,
ChangeDetectorRef,
ChangeDetectionStrategy,
ElementRef,
Expand Down Expand Up @@ -30,7 +30,7 @@ export class TooltipContainer implements AfterViewChecked {
private placement:string;
private popupClass:string;
private animation:boolean;
private isOpen:boolean;
private isOpen:boolean;
private appendToBody:boolean;
private hostEl:ElementRef;

Expand All @@ -52,9 +52,9 @@ export class TooltipContainer implements AfterViewChecked {
this.placement, this.appendToBody);
this.top = p.top + 'px';
this.left = p.left + 'px';
this.classMap['in'] = true;
this.classMap.in = true;
if (this.animation) {
this.classMap['fade'] = true;
this.classMap.fade = true;
}
this.cdr.markForCheck();
});
Expand Down

0 comments on commit 3bb0a01

Please sign in to comment.