File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ const React = require('react/addons');
22const PureRenderMixin = React . addons . PureRenderMixin ;
33const ReactTransitionGroup = React . addons . TransitionGroup ;
44const StylePropable = require ( '../mixins/style-propable' ) ;
5- const Children = require ( '../utils/children' ) ;
65const Dom = require ( '../utils/dom' ) ;
76const ImmutabilityHelper = require ( '../utils/immutability-helper' ) ;
87const CircleRipple = require ( './circle-ripple' ) ;
@@ -59,19 +58,15 @@ const TouchRipple = React.createClass({
5958 ) ;
6059 }
6160
62- const divChildren = Children . create ( {
63- rippleGroup,
64- children,
65- } ) ;
66-
6761 return (
6862 < div
6963 onMouseUp = { this . _handleMouseUp }
7064 onMouseDown = { this . _handleMouseDown }
7165 onMouseLeave = { this . _handleMouseLeave }
7266 onTouchStart = { this . _handleTouchStart }
7367 onTouchEnd = { this . _handleTouchEnd } >
74- { divChildren }
68+ { rippleGroup }
69+ { children }
7570 </ div >
7671 ) ;
7772 } ,
You can’t perform that action at this time.
0 commit comments