0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-28 13:32:39 +00:00

remove logs

This commit is contained in:
Gazook89
2023-08-01 14:16:31 -05:00
parent 2e13eed2ef
commit 8d3329069a

View File

@@ -63,7 +63,6 @@ const SplitPane = createClass({
handleUp : function(e){
e.preventDefault();
console.log('up');
if(this.state.isDragging){
this.props.onDragFinish(this.state.currentDividerPos);
window.localStorage.setItem(this.props.storageKey, this.state.currentDividerPos);
@@ -73,17 +72,12 @@ const SplitPane = createClass({
handleDown : function(e){
e.preventDefault();
console.log('down');
this.setState({ isDragging: true });
//this.unFocus()
},
handleMove : function(e){
e.preventDefault();
console.log('move');
if(!this.state.isDragging) return;
const newSize = this.limitPosition(e.pageX);