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 74d0248 commit 68ad335Copy full SHA for 68ad335
projects/igniteui-angular/src/lib/services/overlay/overlay.ts
@@ -707,7 +707,9 @@ export class IgxOverlayService implements OnDestroy {
707
// to eliminate flickering show the element just before animation start
708
info.wrapperElement.style.visibility = '';
709
info.visible = true;
710
- this.addModalClasses(info);
+ requestAnimationFrame(() => {
711
+ this.addModalClasses(info);
712
+ });
713
info.openAnimationPlayer.play();
714
}
715
0 commit comments