mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-02 10:42:44 +00:00
add e.preventDefault() to mousedown event
This commit is contained in:
@@ -69,7 +69,8 @@ const SplitPane = createClass({
|
|||||||
this.setState({ isDragging: false });
|
this.setState({ isDragging: false });
|
||||||
},
|
},
|
||||||
|
|
||||||
handleDown : function(){
|
handleDown : function(e){
|
||||||
|
e.preventDefault();
|
||||||
this.setState({ isDragging: true });
|
this.setState({ isDragging: true });
|
||||||
//this.unFocus()
|
//this.unFocus()
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user