mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-19 11:58:41 +08:00
13 lines
285 B
JavaScript
13 lines
285 B
JavaScript
|
import demoTest from '../shared/demoTest';
|
||
|
|
||
|
// https://github.com/WickyNilliams/enquire.js/issues/82
|
||
|
window.matchMedia = window.matchMedia || function() {
|
||
|
return {
|
||
|
matches : false,
|
||
|
addListener : function() {},
|
||
|
removeListener: function() {}
|
||
|
};
|
||
|
};
|
||
|
|
||
|
demoTest('carousel');
|