1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 01:36:22 +00:00

removed the onDragEnd handler

This commit is contained in:
Maurits Lourens
2017-11-14 15:10:09 +01:00
parent 6c75136777
commit 1af2c83c63

View File

@@ -90,10 +90,6 @@ class SnippetTab extends React.Component {
this.props.onDragStart(e) this.props.onDragStart(e)
} }
handleDragEnd (e) {
this.props.onDragEnd(e)
}
handleDrop (e) { handleDrop (e) {
this.props.onDrop(e) this.props.onDrop(e)
} }
@@ -112,7 +108,6 @@ class SnippetTab extends React.Component {
onDoubleClick={(e) => this.handleRenameClick(e)} onDoubleClick={(e) => this.handleRenameClick(e)}
onContextMenu={(e) => this.handleContextMenu(e)} onContextMenu={(e) => this.handleContextMenu(e)}
onDragStart={(e) => this.handleDragStart(e)} onDragStart={(e) => this.handleDragStart(e)}
onDragEnd={(e) => this.handleDragEnd(e)}
onDrop={(e) => this.handleDrop(e)} onDrop={(e) => this.handleDrop(e)}
draggable='true' draggable='true'
> >