From 381d7e7615a03a6c6ce3647b1de6f5874e9d5ab0 Mon Sep 17 00:00:00 2001 From: Deep Tailor Date: Fri, 29 Mar 2019 13:21:45 -0700 Subject: [PATCH] Revert "Force digest on compilation of overlay template (#2344)" This reverts commit 8246b4766803bbab10ca719b852c7129e2ade444. --- platform/commonUI/dialog/src/OverlayService.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/platform/commonUI/dialog/src/OverlayService.js b/platform/commonUI/dialog/src/OverlayService.js index ee59b43b9f..75b952734e 100644 --- a/platform/commonUI/dialog/src/OverlayService.js +++ b/platform/commonUI/dialog/src/OverlayService.js @@ -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