(...args)
| 193 | } |
| 194 | |
| 195 | hoverEnd(...args) { |
| 196 | if (this.props.pause === 'hover') { |
| 197 | this.setInterval(); |
| 198 | } |
| 199 | if (this.props.mouseLeave) { |
| 200 | this.props.mouseLeave(...args); |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | renderItems(carouselItems, className) { |
| 205 | const { slide } = this.props; |
nothing calls this directly
no test coverage detected