File tree Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -161,7 +161,6 @@ export default class DragSensor extends Sensor {
161
161
this . trigger ( container , dragStopEvent ) ;
162
162
163
163
this . dragging = false ;
164
- this . delayOver = false ;
165
164
this . startEvent = null ;
166
165
167
166
this [ reset ] ( ) ;
@@ -210,7 +209,6 @@ export default class DragSensor extends Sensor {
210
209
this . startEvent = event ;
211
210
212
211
this . mouseDownTimeout = setTimeout ( ( ) => {
213
- this . delayOver = true ;
214
212
target . draggable = true ;
215
213
this . draggableElement = target ;
216
214
} , this . options . delay ) ;
Original file line number Diff line number Diff line change @@ -39,20 +39,6 @@ export default class Sensor {
39
39
*/
40
40
this . currentContainer = null ;
41
41
42
- /**
43
- * The distance moved from the first pointer down location, no longer updated after the drag has started
44
- * @property distance
45
- * @type {Number }
46
- */
47
- this . distance = 0 ;
48
-
49
- /**
50
- * Indicates whether the delay has ended
51
- * @property delayOver
52
- * @type {Boolean }
53
- */
54
- this . delayOver = false ;
55
-
56
42
/**
57
43
* The event of the initial sensor down
58
44
* @property startEvent
You can’t perform that action at this time.
0 commit comments