i'm trying implement a window modal with ngx-module but when open de window it stay in backgroun and the screen is disabled.
Here is my code:
<button md-raised-button color="primary" class="text-upper" (click)="firstModal.open()">Proveedor</button>
<modal #firstModal>
<modal-header>
<h1>I am first modal</h1>
</modal-header>
<modal-content>
This modal has its own header, content and footer.
</modal-content>
<modal-footer>
<button class="btn btn-primary" click="firstModal.close()">okay!</button>
</modal-footer>
</modal>
<button md-raised-button color="primary" class="text-upper">Marca</button>
</div>
Thanks.