Properly set Edge < 16 as incompatible with css vars
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
64d3a51080
commit
e7a9bf4ac4
1 changed files with 2 additions and 1 deletions
|
@ -913,7 +913,8 @@ function initCore() {
|
|||
}
|
||||
|
||||
// css variables fallback for IE
|
||||
if (msie > 0 || trident > 0) {
|
||||
if (msie > 0 || trident > 0 || edge > 0) {
|
||||
console.info('Legacy browser detected, applying css vars polyfill')
|
||||
cssVars({
|
||||
watch: true,
|
||||
// set edge < 16 as incompatible
|
||||
|
|
Loading…
Reference in a new issue