From a29159a0a1348f932ecb5e03ba6bd43e9d735b6a Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Mon, 13 Jun 2022 16:41:15 +0200 Subject: [PATCH] Remove remaining IE adjustments --- application/layouts/scripts/external-logout.phtml | 1 - application/layouts/scripts/layout.phtml | 1 - doc/02-Installation.md | 4 ---- public/css/icinga/mixins.less | 6 ------ public/js/icinga/behavior/actiontable.js | 6 ------ 5 files changed, 18 deletions(-) diff --git a/application/layouts/scripts/external-logout.phtml b/application/layouts/scripts/external-logout.phtml index 19c35e4e2..19b7e32b9 100644 --- a/application/layouts/scripts/external-logout.phtml +++ b/application/layouts/scripts/external-logout.phtml @@ -16,7 +16,6 @@ $innerLayoutScript = $this->layout()->innerLayout . '.phtml'; - <?= $this->title ? $this->escape($this->title) : $this->defaultTitle ?> diff --git a/application/layouts/scripts/layout.phtml b/application/layouts/scripts/layout.phtml index 1800f2c15..880c2a9f1 100644 --- a/application/layouts/scripts/layout.phtml +++ b/application/layouts/scripts/layout.phtml @@ -28,7 +28,6 @@ $innerLayoutScript = $this->layout()->innerLayout . '.phtml'; - <?= $this->title ? $this->escape($this->title) . ' :: ' : '' ?><?= $this->defaultTitle ?> diff --git a/doc/02-Installation.md b/doc/02-Installation.md index c86bbfd19..5f75e4d6a 100644 --- a/doc/02-Installation.md +++ b/doc/02-Installation.md @@ -23,10 +23,6 @@ or sub-category here: If your desired browser and its version is showing up in green when visiting the respective link, it's probably okay to use it for Icinga Web 2. -!!! note - - Support for Internet Explorer will be completely dropped with version 2.11 - ## Upgrade In case you are upgrading from an older version of Icinga Web 2 diff --git a/public/css/icinga/mixins.less b/public/css/icinga/mixins.less index e463c12f7..c6938d22b 100644 --- a/public/css/icinga/mixins.less +++ b/public/css/icinga/mixins.less @@ -86,12 +86,6 @@ to { opacity: 1; } } -/* IE */ -@-ms-keyframes fadein { - from { opacity: 0; } - to { opacity: 1; } -} - /* Opera < 12.1 */ @-o-keyframes fadein { from { opacity: 0; } diff --git a/public/js/icinga/behavior/actiontable.js b/public/js/icinga/behavior/actiontable.js index 0d4eee272..0f914f7d7 100644 --- a/public/js/icinga/behavior/actiontable.js +++ b/public/js/icinga/behavior/actiontable.js @@ -448,7 +448,6 @@ // the highest precedence before hrefs defined in the tr itself and regular links var $a = $('a[href].rowaction', el).first(); if ($a.length) { - // TODO: Find out whether we leak memory on IE with this: $(el).attr('href', $a.attr('href')); return; } @@ -461,11 +460,6 @@ } }); - // IE will not ignore user-select unless we cancel selectstart - $('table.action.multiselect tr, table.table-row-selectable.multiselect tr', container).each(function(idx, el) { - $(el).on('selectstart', false); - }); - // draw all active selections that have disappeared on reload _this.tables().each(function(i, el) { new Selection(el, _this.icinga).refresh();