mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
guard window
This commit is contained in:
parent
8729808625
commit
c9bea3019b
5
index.js
5
index.js
@ -2,7 +2,8 @@ require('./style/index.less');
|
||||
|
||||
// matchMedia polyfill for
|
||||
// https://github.com/WickyNilliams/enquire.js/issues/82
|
||||
window.matchMedia = window.matchMedia || function () {
|
||||
if (typeof window !== 'undefined') {
|
||||
const matchMediaPolyfill = function matchMediaPolyfill() {
|
||||
return {
|
||||
matches: false,
|
||||
addListener: function () {
|
||||
@ -11,6 +12,8 @@ window.matchMedia = window.matchMedia || function () {
|
||||
}
|
||||
};
|
||||
};
|
||||
window.matchMedia = window.matchMedia || matchMediaPolyfill;
|
||||
}
|
||||
|
||||
const antd = {
|
||||
Affix: require('./components/affix'),
|
||||
|
Loading…
Reference in New Issue
Block a user