Dialog mask is not removed on destroy. #428
Labels
Type: Bug
Issue contains a bug related to a specific component. Something about the component is not working
Milestone
Version; "primeng": "1.0.0-beta.6"
It seems when Dialog.prototype.ngOnDestroy is called that the mask is not removed from the dom.
I suggest to change this code at line 183:
Dialog.prototype.ngOnDestroy = function () {
// new
this.disableModality();
// old
// this.mask = null;
...
}
The text was updated successfully, but these errors were encountered: