Fix for ie11
This commit is contained in:
parent
e09d06b5cc
commit
af095f9d31
|
@ -31,4 +31,10 @@ if ( !window.fetch ) {
|
||||||
return target;
|
return target;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (typeof Object.getOwnPropertySymbols != 'function') {
|
||||||
|
Object.getOwnPropertySymbols = function(target) {
|
||||||
|
return [];
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -108,7 +108,4 @@ if ( checkLocalStorage ) {
|
||||||
document.body.classList.add("content-theme-dark");
|
document.body.classList.add("content-theme-dark");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// IE 10/11 polyfill
|
|
||||||
!Object.getOwnPropertySymbols && (Object.getOwnPropertySymbols = function (){return[]});
|
|
Loading…
Reference in a new issue