Hello
Using an overlay in a modal, when I close the modal, I get this error in the console.
Changing this segment (near line 98)
$element.on('$destroy', function () { overlayElementScope.$destroy(); unsubscribe(); });
To
$element.on('$destroy', function () { if (overlayElementScope){ overlayElementScope.$destroy(); } unsubscribe(); });
Corrects the problem.