From 8d3329069ac5cc284140ed05b876682ab3e3f7b3 Mon Sep 17 00:00:00 2001 From: Gazook89 Date: Tue, 1 Aug 2023 14:16:31 -0500 Subject: [PATCH] remove logs --- shared/naturalcrit/splitPane/splitPane.jsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/shared/naturalcrit/splitPane/splitPane.jsx b/shared/naturalcrit/splitPane/splitPane.jsx index 47f8ceafe..c4cd207c2 100644 --- a/shared/naturalcrit/splitPane/splitPane.jsx +++ b/shared/naturalcrit/splitPane/splitPane.jsx @@ -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);