Remove remaining IE adjustments
This commit is contained in:
parent
5619d8f13d
commit
a29159a0a1
|
@ -16,7 +16,6 @@ $innerLayoutScript = $this->layout()->innerLayout . '.phtml';
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="google" value="notranslate">
|
<meta name="google" value="notranslate">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
||||||
<meta http-equiv="cleartype" content="on">
|
<meta http-equiv="cleartype" content="on">
|
||||||
<title><?= $this->title ? $this->escape($this->title) : $this->defaultTitle ?></title>
|
<title><?= $this->title ? $this->escape($this->title) : $this->defaultTitle ?></title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
||||||
|
|
|
@ -28,7 +28,6 @@ $innerLayoutScript = $this->layout()->innerLayout . '.phtml';
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="google" value="notranslate">
|
<meta name="google" value="notranslate">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
||||||
<meta http-equiv="cleartype" content="on">
|
<meta http-equiv="cleartype" content="on">
|
||||||
<title><?= $this->title ? $this->escape($this->title) . ' :: ' : '' ?><?= $this->defaultTitle ?></title>
|
<title><?= $this->title ? $this->escape($this->title) . ' :: ' : '' ?><?= $this->defaultTitle ?></title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
||||||
|
|
|
@ -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,
|
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.
|
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 <a id="upgrade"></a>
|
## Upgrade <a id="upgrade"></a>
|
||||||
|
|
||||||
In case you are upgrading from an older version of Icinga Web 2
|
In case you are upgrading from an older version of Icinga Web 2
|
||||||
|
|
|
@ -86,12 +86,6 @@
|
||||||
to { opacity: 1; }
|
to { opacity: 1; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/* IE */
|
|
||||||
@-ms-keyframes fadein {
|
|
||||||
from { opacity: 0; }
|
|
||||||
to { opacity: 1; }
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Opera < 12.1 */
|
/* Opera < 12.1 */
|
||||||
@-o-keyframes fadein {
|
@-o-keyframes fadein {
|
||||||
from { opacity: 0; }
|
from { opacity: 0; }
|
||||||
|
|
|
@ -448,7 +448,6 @@
|
||||||
// the highest precedence before hrefs defined in the tr itself and regular links
|
// the highest precedence before hrefs defined in the tr itself and regular links
|
||||||
var $a = $('a[href].rowaction', el).first();
|
var $a = $('a[href].rowaction', el).first();
|
||||||
if ($a.length) {
|
if ($a.length) {
|
||||||
// TODO: Find out whether we leak memory on IE with this:
|
|
||||||
$(el).attr('href', $a.attr('href'));
|
$(el).attr('href', $a.attr('href'));
|
||||||
return;
|
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
|
// draw all active selections that have disappeared on reload
|
||||||
_this.tables().each(function(i, el) {
|
_this.tables().each(function(i, el) {
|
||||||
new Selection(el, _this.icinga).refresh();
|
new Selection(el, _this.icinga).refresh();
|
||||||
|
|
Loading…
Reference in New Issue