Skip to content
This repository has been archived by the owner on Sep 4, 2020. It is now read-only.

Commit

Permalink
v1.5.4 fix modal reposition
Browse files Browse the repository at this point in the history
  • Loading branch information
clouless committed Jan 5, 2018
1 parent 58ba431 commit 2e527c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"COMMENT": "THIS FILE WILL BE PARSED DURING BUILD. IT IS NOT THE ACTUAL PACKAGE FILE PUSHED TO NPMJS!",
"name": "@cloukit/dropout",
"moduleId": "dropout",
"version": "1.5.3",
"version": "1.5.4",
"description": "Dropout is a non visible helper to drop something down, up, left or right relative to a trigger element",
"license": "MIT",
"author": "codelcou.io",
Expand Down
2 changes: 1 addition & 1 deletion src/components/dropout.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export class CloukitDropoutDirective implements OnInit, OnDestroy {
self._doDeactivate();
});
}
if (self.cloukitDropoutReposition instanceof Observable && self.dropoutRef !== undefined) {
if (self.cloukitDropoutReposition instanceof Observable) {
self.cloukitDropoutReposition.takeUntil(self.preDestroy).subscribe(() => {
self.dropoutService.forceReposition(self.dropoutRef);
});
Expand Down

0 comments on commit 2e527c0

Please sign in to comment.