We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4408f8 commit 5a94b27Copy full SHA for 5a94b27
src/modal/base-modal.service.ts
@@ -52,7 +52,7 @@ export class BaseModalService {
52
component.instance.open = false;
53
}),
54
// delay closing by an arbitrary amount to allow the animation to finish
55
- delay(150)
+ delay(240)
56
).subscribe(() => {
57
this.placeholderService.destroyComponent(component);
58
// filter out our component
@@ -85,7 +85,7 @@ export class BaseModalService {
85
// Let animation finish before component is removed
86
setTimeout(() => {
87
this.placeholderService.destroyComponent(BaseModalService.modalList[index]);
88
- }, 300);
+ }, 240);
89
BaseModalService.modalList.splice(index, 1);
90
}
91
0 commit comments