diff --git a/js/SliderTrack.js b/js/SliderTrack.js index 9c205885..0e9e36a2 100644 --- a/js/SliderTrack.js +++ b/js/SliderTrack.js @@ -99,7 +99,7 @@ define( function( require ) { start: function( event, trail ) { if ( self.enabledProperty.get() ) { - options.startDrag(); + options.startDrag( event ); handleTrackEvent( event, trail ); } }, @@ -110,9 +110,9 @@ define( function( require ) { handleTrackEvent( event, trail ); }, - end: function() { + end: function( event ) { if ( self.enabledProperty.get() ) { - options.endDrag(); + options.endDrag( event ); } } } );