Skip to content

Commit a012ce2

Browse files
committed
Fix errant console.log
1 parent 4d01780 commit a012ce2

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

lib/Resizable.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ var Resizable = module.exports = React.createClass({
6969
var me = this;
7070
return function(e, {node, position}) {
7171
let width = me.state.width + position.deltaX, height = me.state.height + position.deltaY;
72-
console.log(position);
7372
me.props[handlerName] && me.props[handlerName](e, {node, size: {width, height}});
7473

7574
if (handlerName === 'onResizeStart') {

0 commit comments

Comments
 (0)