File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -518,7 +518,7 @@ module.exports = React.createClass({
518
518
if ( e . targetTouches ) {
519
519
this . setState ( { touchIdentifier : e . targetTouches [ 0 ] . identifier } ) ;
520
520
}
521
-
521
+
522
522
// Make it possible to attach event handlers on top of this one
523
523
this . props . onMouseDown ( e ) ;
524
524
@@ -565,7 +565,7 @@ module.exports = React.createClass({
565
565
// Short circuit if this is not the correct touch event
566
566
if ( e . changedTouches && ( e . changedTouches [ 0 ] . identifier != this . state . touchIdentifier ) ) {
567
567
return ;
568
- }
568
+ }
569
569
570
570
removeUserSelectStyles ( this ) ;
571
571
@@ -609,7 +609,7 @@ module.exports = React.createClass({
609
609
610
610
// Call event handler. If it returns explicit false, cancel.
611
611
var shouldUpdate = this . props . onDrag ( e , createUIEvent ( this ) ) ;
612
- if ( shouldUpdate === false ) return this . handleDragEnd ( ) ;
612
+ if ( shouldUpdate === false ) return this . handleDragEnd ( { } ) ;
613
613
614
614
// Update transform
615
615
this . setState ( {
You can’t perform that action at this time.
0 commit comments