You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
999 B

// matchMedia polyfill for
// https://github.com/WickyNilliams/enquire.js/issues/82
if (typeof window !== 'undefined') {
const matchMediaPolyfill = function matchMediaPolyfill() {
return {
matches: false,
addListener() {
},
removeListener() {
},
};
};
window.matchMedia = window.matchMedia || matchMediaPolyfill;
}
import Carousel from 'react-slick';
9 years ago
import React from 'react';
import assign from 'object-assign';
9 years ago
const AntCarousel = React.createClass({
9 years ago
getDefaultProps() {
return {
dots: true,
arrows: false,
9 years ago
};
},
render() {
9 years ago
let props = assign({}, this.props);
9 years ago
if (props.effect === 'fade') {
props.fade = true;
props.draggable = false;
9 years ago
}
9 years ago
let className = 'ant-carousel';
9 years ago
if (props.vertical) {
className = className + ' ant-carousel-vertical';
}
return (
<div className={className}>
<Carousel {...props} />
</div>
);
}
});
export default AntCarousel;