[stable16] Properly set Edge < 16 as incompatible with css vars (#15428)
[stable16] Properly set Edge < 16 as incompatible with css vars
This commit is contained in:
commit
b2e8b1b1c9
|
@ -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 New Issue