Angular: 5.0.2 Bootstrap: 4.0.0 ngx-bootstrap: 2.0.2
Modal works fine in Chrome but hangs in internet explorer 11.
This is the call to modalService from component.ts:
this.modalRef = this.modalService.show(
template,
Object.assign({}, { backdrop: true }, { class: 'modal-dialog-custom-profile' })
);
With html template:
<button type="button" class=" fa fa-th-large pickerIcon no-padding-bottom" value="Open Selector" (click)="openModal(template)">
<ng-template #template>
Thank you!