@ts-core/angular 13.0.61 → 13.0.62

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4142,8 +4142,7 @@ class WindowImpl extends WindowBase {
4142
4142
  return this.properties.reference;
4143
4143
  }
4144
4144
  isNeedClickStopPropagation(event) {
4145
- // return !this.isWasOnTop;
4146
- if (!this.isWasOnTop && !this.isOnTop) {
4145
+ if (!this.isWasOnTop) {
4147
4146
  return true;
4148
4147
  }
4149
4148
  let element = _.find(this.elements, item => item.location.nativeElement === event.target);