From 92f54b9a4dd4541841e3034d090f950864a06d79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20=C3=87etin?= <92744169+mehmetcetin01140@users.noreply.github.com> Date: Fri, 13 Dec 2024 13:07:38 +0300 Subject: [PATCH] update blockui --- packages/primeng/src/blockui/blockui.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/primeng/src/blockui/blockui.ts b/packages/primeng/src/blockui/blockui.ts index 049ec1bf755..48a6ce881c5 100755 --- a/packages/primeng/src/blockui/blockui.ts +++ b/packages/primeng/src/blockui/blockui.ts @@ -155,7 +155,7 @@ export class BlockUI extends BaseComponent implements AfterViewInit, AfterConten // this.animationEndListener = this.renderer.listen(this.mask.nativeElement, 'animationend', this.destroyModal.bind(this)); // TODO Add animation this.destroyModal(); - addClass(this.mask.nativeElement, 'p-overlay-mask-leave'); + // addClass(this.mask.nativeElement, 'p-overlay-mask-leave'); } } @@ -163,7 +163,7 @@ export class BlockUI extends BaseComponent implements AfterViewInit, AfterConten this._blocked = false; if (this.mask && isPlatformBrowser(this.platformId)) { ZIndexUtils.clear(this.mask.nativeElement); - removeClass(this.mask.nativeElement, 'p-overlay-mask-leave'); + // removeClass(this.mask.nativeElement, 'p-overlay-mask-leave'); this.renderer.removeChild(this.el.nativeElement, this.mask.nativeElement); unblockBodyScroll(); }