diff --git a/app/view/sdl/SubtleAlertPopUp.js b/app/view/sdl/SubtleAlertPopUp.js index f1e25ccae..98a91ee77 100644 --- a/app/view/sdl/SubtleAlertPopUp.js +++ b/app/view/sdl/SubtleAlertPopUp.js @@ -61,9 +61,9 @@ SDL.SubtleAlertPopUp = Em.ContainerView.create( click(event) { const path = event.path; for(const pathElement of path) { - if ('id' in pathElement - && typeof pathElement.id === 'string' - && pathElement.id.includes("resetTimeoutButton")) { + if ('className' in pathElement + && typeof pathElement.className === 'string' + && pathElement.className.match(/resetTimeoutButton|ResetTimeoutPopUp/)) { return; } }