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
silverwind
5 years ago
committed by
GitHub
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; |
||||
}; |
||||
} |
@ -1,11 +1,5 @@
|
||||
// This sets up webpack's chunk loading to load resources from the 'public'
|
||||
// directory. This file must be imported before any lazy-loading is being attempted.
|
||||
|
||||
if (document.currentScript && document.currentScript.src) { |
||||
const url = new URL(document.currentScript.src); |
||||
__webpack_public_path__ = url.pathname.replace(/\/[^/]*?\/[^/]*?$/, '/'); |
||||
} else { |
||||
// compat: IE11
|
||||
const script = document.querySelector('script[src*="/index.js"]'); |
||||
__webpack_public_path__ = script.getAttribute('src').replace(/\/[^/]*?\/[^/]*?$/, '/'); |
||||
} |
||||
const url = new URL(document.currentScript.src); |
||||
__webpack_public_path__ = url.pathname.replace(/\/[^/]*?\/[^/]*?$/, '/'); |
||||
|
Loading…
Reference in new issue