Browse Source
* Remove IE11 support With master now on 1.13, it's time to drop IE11 for good. The woff variants are also in use by Opera Mini but it has even less market share and I can only imagine how broken the UI is in it. Fixes: https://github.com/go-gitea/gitea/issues/6147 * update docs Co-authored-by: techknowlogick <techknowlogick@gitea.io>tags/v1.13.0-rc1
11 changed files with 14 additions and 45 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,17 +0,0 @@ |
|||||||
// compat: IE11
|
|
||||||
if (!Element.prototype.matches) { |
|
||||||
Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector; |
|
||||||
} |
|
||||||
|
|
||||||
// compat: IE11
|
|
||||||
if (!Element.prototype.closest) { |
|
||||||
Element.prototype.closest = function (s) { |
|
||||||
let el = this; |
|
||||||
|
|
||||||
do { |
|
||||||
if (el.matches(s)) return el; |
|
||||||
el = el.parentElement || el.parentNode; |
|
||||||
} while (el !== null && el.nodeType === 1); |
|
||||||
return null; |
|
||||||
}; |
|
||||||
} |
|
Loading…
Reference in new issue