We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bac40d5 commit f27ae68Copy full SHA for f27ae68
2 files changed
R/helper_functions.R
@@ -330,7 +330,7 @@ generate_plot <- function(
330
)
331
332
333
- plotly::event_register(plt_obj, 'plotly_click')
+ plotly::event_register(plt_obj, "plotly_click")
334
335
return(plt_obj)
336
}
R/mod_edish.R
@@ -296,7 +296,9 @@ edish_server <- function(
296
297
# Return subj_id for communication with dv.papo
298
return(
299
- list(subj_id = shiny::reactive({plotly::event_data("plotly_click", source = "plot")$key}))
+ list(subj_id = shiny::reactive({
300
+ plotly::event_data("plotly_click", source = "plot")$key
301
+ }))
302
303
304
})
0 commit comments