@@ -848,9 +848,17 @@ function throttle(func, wait, options) {
848
848
{
849
849
this . minH . on ( 'mousedown' , angular . bind ( this , this . onStart , this . minH , 'rzSliderModel' ) ) ;
850
850
if ( this . range ) { this . maxH . on ( 'mousedown' , angular . bind ( this , this . onStart , this . maxH , 'rzSliderHigh' ) ) ; }
851
+ this . fullBar . on ( 'mousedown' , angular . bind ( this , this . onStart , this . fullBar , 'rzSliderModel' ) ) ;
852
+ this . fullBar . on ( 'mousedown' , angular . bind ( this , this . onMove , this . fullBar ) ) ;
853
+ this . selBar . on ( 'mousedown' , angular . bind ( this , this . onStart , this . selBar , 'rzSliderModel' ) ) ;
854
+ this . selBar . on ( 'mousedown' , angular . bind ( this , this . onMove , this . selBar ) ) ;
851
855
852
856
this . minH . on ( 'touchstart' , angular . bind ( this , this . onStart , this . minH , 'rzSliderModel' ) ) ;
853
857
if ( this . range ) { this . maxH . on ( 'touchstart' , angular . bind ( this , this . onStart , this . maxH , 'rzSliderHigh' ) ) ; }
858
+ this . fullBar . on ( 'touchstart' , angular . bind ( this , this . onStart , this . fullBar , 'rzSliderModel' ) ) ;
859
+ this . fullBar . on ( 'touchstart' , angular . bind ( this , this . onMove , this . fullBar ) ) ;
860
+ this . selBar . on ( 'touchstart' , angular . bind ( this , this . onStart , this . selBar , 'rzSliderModel' ) ) ;
861
+ this . selBar . on ( 'touchstart' , angular . bind ( this , this . onMove , this . selBar ) ) ;
854
862
} ,
855
863
856
864
/**
0 commit comments