-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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: #6147
- Loading branch information
1 parent
7fd60c6
commit b21ad9b
Showing
9 changed files
with
9 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,6 +58,8 @@ | |
"updates": "10.2.11" | ||
}, | ||
"browserslist": [ | ||
"defaults" | ||
"defaults", | ||
"not ie > 0", | ||
"not ie_mob > 0" | ||
] | ||
} |
Binary file removed
BIN
-64.7 KB
...onts/roboto-v20-latin-ext_cyrillic-ext_latin_greek_vietnamese_cyrillic_greek-ext-700.woff
Binary file not shown.
Binary file removed
BIN
-69.1 KB
...oboto-v20-latin-ext_cyrillic-ext_latin_greek_vietnamese_cyrillic_greek-ext-700italic.woff
Binary file not shown.
Binary file removed
BIN
-68.6 KB
...s/roboto-v20-latin-ext_cyrillic-ext_latin_greek_vietnamese_cyrillic_greek-ext-italic.woff
Binary file not shown.
Binary file removed
BIN
-64.5 KB
.../roboto-v20-latin-ext_cyrillic-ext_latin_greek_vietnamese_cyrillic_greek-ext-regular.woff
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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(/\/[^/]*?\/[^/]*?$/, '/'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters