Skip to content

Commit

Permalink
fix(collapse): Setting overflow back to visible in Collapse (valor-so…
Browse files Browse the repository at this point in the history
…ftware#433)

This fix helped me resolve 2 issues - collapse now expands all the way and takes component height into consideration, and also popups like datepicker aren't "cut-off" on component's edge.
fixes valor-software#372
  • Loading branch information
Celebes authored and Johan Smolders committed Apr 26, 2016
1 parent ddd42dc commit 9fe74a7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions components/collapse/collapse.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ export class Collapse implements OnInit {
.onComplete(() => {
this.isCollapse = true;
this.isCollapsing = false;
this._el.nativeElement.style.overflow = 'visible';
});
}, 4);
}
Expand Down

0 comments on commit 9fe74a7

Please sign in to comment.