Skip to content

Commit

Permalink
fix(esl-utils): createZIndexIframe retired
Browse files Browse the repository at this point in the history
BREAKING CHANGE: `createZIndexIframe` and `is-fixes` module no longer available due to drop of IE11 support
  • Loading branch information
ala-n committed Apr 28, 2023
1 parent a4c9b8d commit ad678cb
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 21 deletions.
3 changes: 0 additions & 3 deletions src/modules/esl-alert/core/esl-alert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ import {ExportNs} from '../../esl-utils/environment/export-ns';
import {attr, jsonAttr, prop, listen} from '../../esl-utils/decorators';
import {isMatches} from '../../esl-utils/dom/traversing';
import {ESLToggleable} from '../../esl-toggleable/core';
import {DeviceDetector} from '../../esl-utils/environment/device-detector';
import {CSSClassUtils} from '../../esl-utils/dom/class';
import {createZIndexIframe} from '../../esl-utils/fixes/ie-fixes';
import {ESLTraversingQuery} from '../../esl-traversing-query/core';

import type {ESLToggleableActionParams, ESLToggleableRequestDetails} from '../../esl-toggleable/core';
Expand Down Expand Up @@ -87,7 +85,6 @@ export class ESLAlert extends ESLToggleable {
this.$content.className = 'esl-alert-content';
this.innerHTML = '';
this.appendChild(this.$content);
if (DeviceDetector.isIE) this.appendChild(createZIndexIframe());
if (this.target) {
this.$target = ESLTraversingQuery.first(this.target, this) as EventTarget;
}
Expand Down
1 change: 0 additions & 1 deletion src/modules/esl-utils/fixes.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export * from './fixes/ie-fixes';
export * from './fixes/viewport';
10 changes: 0 additions & 10 deletions src/modules/esl-utils/fixes/ie-fixes.less

This file was deleted.

7 changes: 0 additions & 7 deletions src/modules/esl-utils/fixes/ie-fixes.ts

This file was deleted.

0 comments on commit ad678cb

Please # to comment.