File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
inst/www/shared/ionrangeslider/js Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 767
767
*/
768
768
pointerDown : function ( target , e ) {
769
769
e . preventDefault ( ) ;
770
+ e . stopPropagation ( ) ;
770
771
var x = e . pageX || e . originalEvent . touches && e . originalEvent . touches [ 0 ] . pageX ;
771
772
if ( e . button === 2 ) {
772
773
return ;
810
811
*/
811
812
pointerClick : function ( target , e ) {
812
813
e . preventDefault ( ) ;
814
+ e . stopPropagation ( ) ;
813
815
var x = e . pageX || e . originalEvent . touches && e . originalEvent . touches [ 0 ] . pageX ;
814
816
if ( e . button === 2 ) {
815
817
return ;
Original file line number Diff line number Diff line change 1
1
# !/usr/bin/env Rscript
2
2
3
3
# This script copies resources from ion.RangeSlider to shiny's inst
4
- # directory. The ion.RangeSlider / project directory should be on the same level
4
+ # directory. The ion.rangeSlider / project directory should be on the same level
5
5
# as the shiny/ project directory.
6
6
7
+ # The version of ion.rangeSlider that we use is modified from the base version
8
+ # in two ways:
9
+ # * In our version, mouse events on the slider are not propagated to lower
10
+ # layers (#711, #1630).
11
+ # * We include a custom skin for Shiny.
12
+
7
13
# This script can be sourced from RStudio, or run with Rscript.
8
14
9
15
# Returns the file currently being sourced or run with Rscript
You can’t perform that action at this time.
0 commit comments