Fixed #1537 - BlockUI doesn't get rid of div

pull/1544/head
mertsincan 2021-09-14 12:39:53 +03:00
parent e38a5b8e91
commit af831bb135
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ export default {
}, },
unblock() { unblock() {
DomHandler.addClass(this.mask, 'p-component-overlay-leave'); DomHandler.addClass(this.mask, 'p-component-overlay-leave');
this.mask.addEventListener('transitionend', () => { this.mask.addEventListener('animationend', () => {
this.removeMask(); this.removeMask();
}); });
}, },