Revert "Force digest on compilation of overlay template (#2344)"

This reverts commit 8246b47668.
This commit is contained in:
Deep Tailor 2019-03-29 13:21:45 -07:00 committed by GitHub
parent 8246b47668
commit 381d7e7615

View File

@ -92,13 +92,13 @@ define(
scope.overlay = overlayModel;
scope.key = key;
scope.typeClass = typeClass || 't-dialog';
scope.$apply(() => {
// Create the overlay element and add it to the document's body
element = this.$compile(TEMPLATE)(scope);
// Append so that most recent dialog is last in DOM. This means the most recent dialog will be on top when
// multiple overlays with the same z-index are active.
this.findBody().append(element);
})
// Create the overlay element and add it to the document's body
element = this.$compile(TEMPLATE)(scope);
// Append so that most recent dialog is last in DOM. This means the most recent dialog will be on top when
// multiple overlays with the same z-index are active.
this.findBody().append(element);
return {
dismiss: dismiss