Доброго времени суток,
возникла проблема с ng2-bootstrap, а именно с модельными окнами. Collapse, alert и другие работают (проверял не все), а вот modal не в какую.
Использую по примеру на офф.сайте:
<button type="button" class="btn btn-primary" (click)="staticModal.show()">Static modal</button>
<div class="modal fade" bsModal #staticModal="bs-modal" [config]="{backdrop: 'static'}"
tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-sm">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title pull-left">Static modal</h4>
<button type="button" class="close pull-right" aria-label="Close" (click)="staticModal.hide()">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
This is static modal, backdrop click will not close it.
Click <b>×</b> to close modal.
</div>
</div>
</div>
</div>
Но при нажатии на кнопку получаю ошибки:
caused by: ApplicationRef instance not found
ApplicationRef instance not found