mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-07 03:00:20 -04:00
Properly use hoverClip option
This commit is contained in:
@@ -1352,7 +1352,7 @@ $.extend(imageOutputBinding, {
|
||||
dblclickDelay: OR($el.data('dblclick-delay'), 400),
|
||||
|
||||
hoverId: $el.data('hover-id'),
|
||||
hoverClip: OR($el.data('hover-clip'), true),
|
||||
hoverClip: OR(strToBool($el.data('hover-clip')), true),
|
||||
hoverDelayType: OR($el.data('hover-delay-type'), 'debounce'),
|
||||
hoverDelay: OR($el.data('hover-delay'), 300),
|
||||
hoverNullOutside: OR(strToBool($el.data('hover-null-outside')), false),
|
||||
|
||||
File diff suppressed because one or more lines are too long
2
inst/www/shared/shiny.min.js
vendored
2
inst/www/shared/shiny.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -41,7 +41,7 @@ $.extend(imageOutputBinding, {
|
||||
dblclickDelay: OR($el.data('dblclick-delay'), 400),
|
||||
|
||||
hoverId: $el.data('hover-id'),
|
||||
hoverClip: OR($el.data('hover-clip'), true),
|
||||
hoverClip: OR(strToBool($el.data('hover-clip')), true),
|
||||
hoverDelayType: OR($el.data('hover-delay-type'), 'debounce'),
|
||||
hoverDelay: OR($el.data('hover-delay'), 300),
|
||||
hoverNullOutside: OR(strToBool($el.data('hover-null-outside')), false),
|
||||
|
||||
Reference in New Issue
Block a user