mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-27 12:36:14 +01:00
fixes on modal
This commit is contained in:
parent
a7a58ae8f3
commit
c59bca05bb
@ -22,7 +22,7 @@ export class ModalComponent implements OnDestroy {
|
|||||||
parentContainer: ViewContainerRef = null;
|
parentContainer: ViewContainerRef = null;
|
||||||
fade: boolean = true;
|
fade: boolean = true;
|
||||||
|
|
||||||
constructor(private componentFactoryResolver: ComponentFactoryResolver) { }
|
constructor(protected componentFactoryResolver: ComponentFactoryResolver) { }
|
||||||
|
|
||||||
ngOnDestroy() {
|
ngOnDestroy() {
|
||||||
document.body.classList.remove('modal-open');
|
document.body.classList.remove('modal-open');
|
||||||
@ -46,7 +46,8 @@ export class ModalComponent implements OnDestroy {
|
|||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
});
|
});
|
||||||
|
|
||||||
for (const closeElement of document.querySelectorAll('.modal, .modal *[data-dismiss="modal"]')) {
|
const modals = Array.from(document.querySelectorAll('.modal, .modal *[data-dismiss="modal"]'));
|
||||||
|
for (const closeElement of modals) {
|
||||||
closeElement.addEventListener('click', (event) => {
|
closeElement.addEventListener('click', (event) => {
|
||||||
this.close();
|
this.close();
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user